fixing dupe channels / users in the client
[quassel.git] / src / common / aliasmanager.cpp
index c03c4e4..f9b0385 100644 (file)
 #include <QStringList>
 
 AliasManager &AliasManager::operator=(const AliasManager &other) {
+  if(this == &other)
+    return *this;
+  
+  SyncableObject::operator=(other);
   _aliases = other._aliases;
   return *this;
 }