X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.cpp;fp=src%2Fcore%2Fcoreidentity.cpp;h=fef752222a3bbb4256f1a8d47c19882d511eff66;hp=fb836e11b1d4bf4006021317aea459ec2f99e90e;hb=39eb2fda3eaef2de78a8134556015ff86e9b85d4;hpb=70283ef877bdf3339fb067667ad9130ceabd8b9a 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 }