summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--library/backend/palmtoprecord.cpp1
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
@@ -34,12 +34,13 @@
34namespace Qtopia { 34namespace Qtopia {
35 35
36 36
37 37
38Record &Record::operator=( const Record &c ) 38Record &Record::operator=( const Record &c )
39{ 39{
40 if(this == &c ) return *this;
40 mUid = c.mUid; 41 mUid = c.mUid;
41 mCats = c.mCats; 42 mCats = c.mCats;
42 customMap = c.customMap; 43 customMap = c.customMap;
43 return *this; 44 return *this;
44} 45}
45 46