summaryrefslogtreecommitdiff
path: root/library/backend
authorzecke <zecke>2004-02-19 02:04:25 (UTC)
committer zecke <zecke>2004-02-19 02:04:25 (UTC)
commitf98fdfa6509fd1db5ea9ee834b5808ee12c8e697 (patch) (unidiff)
tree051013174da734e7f9fd634973c80263c95b1b02 /library/backend
parent3b4b9e070f84ce884a98b4112eaee2cef7530308 (diff)
downloadopie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.zip
opie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.tar.gz
opie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.tar.bz2
Add note for the inline dtor and future Opie versions
in regard to BC
Diffstat (limited to 'library/backend') (more/less context) (ignore whitespace changes)
-rw-r--r--library/backend/palmtoprecord.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/backend/palmtoprecord.h b/library/backend/palmtoprecord.h
index 15cdd6a..0fce032 100644
--- a/library/backend/palmtoprecord.h
+++ b/library/backend/palmtoprecord.h
@@ -52,6 +52,9 @@ class QPC_EXPORT Record
52public: 52public:
53 Record() : mUid(0), mCats() { } 53 Record() : mUid(0), mCats() { }
54 Record( const Record &c ) :mUid( c.mUid ), mCats ( c.mCats ), customMap(c.customMap) { } 54 Record( const Record &c ) :mUid( c.mUid ), mCats ( c.mCats ), customMap(c.customMap) { }
55 /**
56 * @todo make non inline in regard to KDE BC guide
57 */
55 virtual ~Record() { } 58 virtual ~Record() { }
56 59
57 Record &operator=( const Record &c ); 60 Record &operator=( const Record &c );