-rw-r--r-- | library/backend/palmtoprecord.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/backend/palmtoprecord.cpp b/library/backend/palmtoprecord.cpp index 3cfa874..8543559 100644 --- a/library/backend/palmtoprecord.cpp +++ b/library/backend/palmtoprecord.cpp @@ -28,24 +28,25 @@ \ingroup qtopiaemb \ingroup qtopiadesktop */ namespace Qtopia { Record &Record::operator=( const Record &c ) { + if(this == &c ) return *this; mUid = c.mUid; mCats = c.mCats; customMap = c.customMap; return *this; } void Record::setCategories( int single ) { if ( single == 0 ) return; mCats.resize(1); mCats[0] = single; |