author | zecke <zecke> | 2004-02-19 02:04:25 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-02-19 02:04:25 (UTC) |
commit | f98fdfa6509fd1db5ea9ee834b5808ee12c8e697 (patch) (side-by-side diff) | |
tree | 051013174da734e7f9fd634973c80263c95b1b02 | |
parent | 3b4b9e070f84ce884a98b4112eaee2cef7530308 (diff) | |
download | opie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.zip opie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.tar.gz opie-f98fdfa6509fd1db5ea9ee834b5808ee12c8e697.tar.bz2 |
Add note for the inline dtor and future Opie versions
in regard to BC
-rw-r--r-- | library/backend/palmtoprecord.h | 3 |
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 @@ -47,16 +47,19 @@ class RecordPrivate; * @see Event * @see Contact */ class QPC_EXPORT Record { public: Record() : mUid(0), mCats() { } Record( const Record &c ) : mUid( c.mUid ), mCats ( c.mCats ), customMap(c.customMap) { } + /** + * @todo make non inline in regard to KDE BC guide + */ virtual ~Record() { } Record &operator=( const Record &c ); virtual bool match( const QRegExp & ) const { return FALSE; } void setCategories( const QArray<int> &v ) { mCats = v; mCats.sort(); } void setCategories( int single ); |