X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresession.cpp;h=603d291ff7096c7366fc87076379fbe4d74cc00e;hp=1e543e7d86e75aaf1706cb5bb31d4f34f0da91a9;hb=36743995add34474fa2db3be8e7b37168232ac70;hpb=d0f10fd4b6455fe2d0cf38d7c32e7cd61fc96f1b 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);