clazy: Convert many old-style connects into function pointer based
[quassel.git] / src / client / clientbufferviewconfig.cpp
index 161ba18..7d5362e 100644 (file)
@@ -24,7 +24,7 @@ ClientBufferViewConfig::ClientBufferViewConfig(int bufferViewId, QObject *parent
     : BufferViewConfig(bufferViewId, parent),
     _locked(false)
 {
-    connect(this, SIGNAL(initDone()), this, SLOT(ensureDecoration()));
+    connect(this, &SyncableObject::initDone, this, &ClientBufferViewConfig::ensureDecoration);
 }