From: Marcus Eggenberger Date: Sat, 7 Mar 2009 18:43:23 +0000 (+0100) Subject: properly making identity cert and key persistent X-Git-Tag: 0.4.1~29 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=5c10eddd3380182f5247859d1d43dc8ee9ddeb4c;hp=a50115cf52790db5a53d0b6c6f7458f86e6a5c43 properly making identity cert and key persistent --- 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 }