X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsessionthread.cpp;h=c2f9b5a2103dd9f465b96b38f521a26aa1c6d547;hb=d0e9b7a1d5e73041ade519189eea012500440ba9;hp=1439bfceca382f979897bfdf96972e296fdf7837;hpb=eaa1bd30bc088e5cae6d8a742d7aedb3d8ff1897;p=quassel.git diff --git a/src/core/sessionthread.cpp b/src/core/sessionthread.cpp index 1439bfce..c2f9b5a2 100644 --- a/src/core/sessionthread.cpp +++ b/src/core/sessionthread.cpp @@ -121,7 +121,6 @@ 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)));