Fix slots for new syncobj
[quassel.git] / src / client / clientignorelistmanager.cpp
index f4b1f91..e54eeb7 100644 (file)
@@ -25,10 +25,5 @@ INIT_SYNCABLE_OBJECT(ClientIgnoreListManager)
 ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent)
     : IgnoreListManager(parent)
 {
-  connect(this, SIGNAL(updated(const QVariantMap&)), this, SLOT(ignoreListUpdated(const QVariantMap&)));
-}
-
-void ClientIgnoreListManager::ignoreListUpdated(const QVariantMap &newMap) {
-  if(newMap != initIgnoreList())
-    emit ignoreListChanged();
+  connect(this, SIGNAL(updated()), SIGNAL(ignoreListChanged()));
 }