summaryrefslogtreecommitdiff
authorzecke <zecke>2003-05-14 14:45:08 (UTC)
committer zecke <zecke>2003-05-14 14:45:08 (UTC)
commite4b4319e57b29cd00aa12ca21480df047d1b5e52 (patch) (side-by-side diff)
tree3d8b9856aa513c026b19736f75d41e277acbf1ca
parente79fbade975dd5e0bf5d8fc649b755c11c7956c4 (diff)
downloadopie-e4b4319e57b29cd00aa12ca21480df047d1b5e52.zip
opie-e4b4319e57b29cd00aa12ca21480df047d1b5e52.tar.gz
opie-e4b4319e57b29cd00aa12ca21480df047d1b5e52.tar.bz2
Guard against self assignemt as well
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
@@ -16,48 +16,49 @@
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
**********************************************************************/
#include <qtopia/private/palmtoprecord.h>
#include <qtopia/stringutil.h>
#include <qstringlist.h>
/*! \class Qtopia::PalmtopRecord palmtoprecord.h
\brief The Qtopia::PalmtopRecord class is the base class for all PIM records.
Provides unique id and category support for all PIM records.
\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;
}
// convenience methods provided for loading and saving to xml
QString Record::idsToString( const QArray<int> &catsUnsorted )
{
QArray<int> cats = catsUnsorted;
cats.sort();
QString str;
for ( uint i = 0; i < cats.size(); i++ )
if ( i == 0 )
str = QString::number( cats[int(i)] );