X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.cpp;h=acba205d569e5ed2dbb82185cfb153122e6cc129;hp=a2cf75630505b7d076ef5e4989631b0693dec3a6;hb=fe917a13b62d08f6d1abf1b834dcbc31d6ab6b23;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/core/coreidentity.cpp b/src/core/coreidentity.cpp index a2cf7563..acba205d 100644 --- a/src/core/coreidentity.cpp +++ b/src/core/coreidentity.cpp @@ -30,6 +30,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 &))); #endif } @@ -41,6 +42,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 &))); #endif } @@ -54,6 +56,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 &))); #endif }