clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / core / coredccconfig.cpp
index 806bfcb..077bb68 100644 (file)
@@ -36,7 +36,7 @@ CoreDccConfig::CoreDccConfig(CoreSession *session)
     // Otherwise, we just use the defaults initialized in the base class
 
     // We store our settings whenever they change
-    connect(this, SIGNAL(updatedRemotely()), SLOT(save()));
+    connect(this, &SyncableObject::updatedRemotely, this, &CoreDccConfig::save);
 }