clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / client / clientignorelistmanager.cpp
index 93463af..a23f891 100644 (file)
@@ -23,7 +23,7 @@
 ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent)
     : IgnoreListManager(parent)
 {
-    connect(this, SIGNAL(updatedRemotely()), SIGNAL(ignoreListChanged()));
+    connect(this, &SyncableObject::updatedRemotely, this, &ClientIgnoreListManager::ignoreListChanged);
 }