X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsessionthread.cpp;h=1439bfceca382f979897bfdf96972e296fdf7837;hp=c2f9b5a2103dd9f465b96b38f521a26aa1c6d547;hb=8379f6f725cf8ed2fdad1a19bd10743436c2d086;hpb=99ae722f4f4b427698d07d6476b3b860da7fa09c diff --git a/src/core/sessionthread.cpp b/src/core/sessionthread.cpp index c2f9b5a2..1439bfce 100644 --- a/src/core/sessionthread.cpp +++ b/src/core/sessionthread.cpp @@ -121,6 +121,7 @@ void SessionThread::addInternalClientToSession(InternalPeer *internalPeer) void SessionThread::run() { _session = new CoreSession(user(), _restoreState); + connect(_session, SIGNAL(passwordChangeRequested(UserId, QString)), SIGNAL(passwordChangeRequested(UserId, QString))); connect(this, SIGNAL(addRemoteClient(RemotePeer*)), _session, SLOT(addClient(RemotePeer*))); connect(this, SIGNAL(addInternalClient(InternalPeer*)), _session, SLOT(addClient(InternalPeer*))); connect(_session, SIGNAL(sessionState(Protocol::SessionState)), Core::instance(), SIGNAL(sessionState(Protocol::SessionState)));