fixing bulk updates of SyncObjects
[quassel.git] / src / core / coreidentity.cpp
index fb836e1..fef7522 100644 (file)
@@ -31,7 +31,7 @@ CoreIdentity::CoreIdentity(IdentityId id, QObject *parent)
 {
 #ifdef HAVE_SSL
   connect(this, SIGNAL(idSet(IdentityId)), &_certManager, SLOT(setId(IdentityId)));
-  connect(&_certManager, SIGNAL(updated(const QVariantMap &)), this, SIGNAL(updated(const QVariantMap &)));
+  connect(&_certManager, SIGNAL(updated()), this, SIGNAL(updated()));
 #endif
 }
 
@@ -43,7 +43,7 @@ CoreIdentity::CoreIdentity(const Identity &other, QObject *parent)
 {
 #ifdef HAVE_SSL
   connect(this, SIGNAL(idSet(IdentityId)), &_certManager, SLOT(setId(IdentityId)));
-  connect(&_certManager, SIGNAL(updated(const QVariantMap &)), this, SIGNAL(updated(const QVariantMap &)));
+  connect(&_certManager, SIGNAL(updated()), this, SIGNAL(updated()));
 #endif
 }
 
@@ -57,7 +57,7 @@ CoreIdentity::CoreIdentity(const CoreIdentity &other, QObject *parent)
 {
 #ifdef HAVE_SSL
   connect(this, SIGNAL(idSet(IdentityId)), &_certManager, SLOT(setId(IdentityId)));
-  connect(&_certManager, SIGNAL(updated(const QVariantMap &)), this, SIGNAL(updated(const QVariantMap &)));
+  connect(&_certManager, SIGNAL(updated()), this, SIGNAL(updated()));
 #endif
 }