X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.cpp;h=e54eeb760cf8619d428931b433b9bff6d5995b2d;hb=91d4d49abb5e1a8dabba5ae5e460981afda0a354;hp=f4b1f9176eafd9e158119192a2f83f8deae3e771;hpb=12feae2e4609b90c87d3c1857031909248143fd7;p=quassel.git diff --git a/src/client/clientignorelistmanager.cpp b/src/client/clientignorelistmanager.cpp index f4b1f917..e54eeb76 100644 --- a/src/client/clientignorelistmanager.cpp +++ b/src/client/clientignorelistmanager.cpp @@ -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())); }