clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / core / corealiasmanager.cpp
index 0a7faa1..0700668 100644 (file)
@@ -39,7 +39,7 @@ CoreAliasManager::CoreAliasManager(CoreSession *parent)
         loadDefaults();
 
     // we store our settings whenever they change
-    connect(this, SIGNAL(updatedRemotely()), SLOT(save()));
+    connect(this, &SyncableObject::updatedRemotely, this, &CoreAliasManager::save);
 }