X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.cpp;h=fef752222a3bbb4256f1a8d47c19882d511eff66;hp=fb836e11b1d4bf4006021317aea459ec2f99e90e;hb=68eca2c9f0ae5acbda19a6965a2630bd4649ef24;hpb=f6b9eeda207d42c99fc3e9085631722cf2ec83dc diff --git a/src/core/coreidentity.cpp b/src/core/coreidentity.cpp index fb836e11..fef75222 100644 --- a/src/core/coreidentity.cpp +++ b/src/core/coreidentity.cpp @@ -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 }