X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoresession.cpp;h=603d291ff7096c7366fc87076379fbe4d74cc00e;hb=3456106b07bfc3000e50df9322ddefd4f872e0fb;hp=1e543e7d86e75aaf1706cb5bb31d4f34f0da91a9;hpb=0cba5df52ef9e773aef1a301ca6a4cfe8199bfd1;p=quassel.git diff --git a/src/core/coresession.cpp b/src/core/coresession.cpp index 1e543e7d..603d291f 100644 --- a/src/core/coresession.cpp +++ b/src/core/coresession.cpp @@ -405,7 +405,7 @@ void CoreSession::createIdentity(const Identity &identity, const QVariantMap &ad void CoreSession::createIdentity(const CoreIdentity &identity) { CoreIdentity *coreIdentity = new CoreIdentity(identity, this); _identities[identity.id()] = coreIdentity; - // CoreIdentity has it's own synchronize method since it's "private" sslManager needs to be synced aswell + // CoreIdentity has its own synchronize method since its "private" sslManager needs to be synced as well coreIdentity->synchronize(signalProxy()); connect(coreIdentity, SIGNAL(updated()), this, SLOT(updateIdentityBySender())); emit identityCreated(*coreIdentity);