common: Make SyncableObject non-copyable
[quassel.git] / src / common / ignorelistmanager.cpp
index 83add35..d0ab71f 100644 (file)
 #include <QDebug>
 #include <QStringList>
 
-IgnoreListManager& IgnoreListManager::operator=(const IgnoreListManager& other)
-{
-    if (this == &other)
-        return *this;
-
-    SyncableObject::operator=(other);
-    _ignoreList = other._ignoreList;
-    return *this;
-}
-
 int IgnoreListManager::indexOf(const QString& ignore) const
 {
     for (int i = 0; i < _ignoreList.count(); i++) {