X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fnetworkmodel.cpp;h=e81f6c03e250b0f786a75b7eeed0c4d903e0e86c;hp=1a2da5e81a5fa2b0b7d9c0f743e6b7c8980db97b;hb=ac654fdeeece68d64561920479f064ad3c237e26;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a diff --git a/src/client/networkmodel.cpp b/src/client/networkmodel.cpp index 1a2da5e8..e81f6c03 100644 --- a/src/client/networkmodel.cpp +++ b/src/client/networkmodel.cpp @@ -522,6 +522,7 @@ void QueryBufferItem::setIrcUser(IrcUser *ircUser) if (ircUser) { connect(ircUser, SIGNAL(quited()), this, SLOT(removeIrcUser())); connect(ircUser, SIGNAL(awaySet(bool)), this, SIGNAL(dataChanged())); + connect(ircUser, SIGNAL(encryptedSet(bool)), this, SLOT(setEncrypted(bool))); } _ircUser = ircUser; @@ -600,6 +601,8 @@ void ChannelBufferItem::attachIrcChannel(IrcChannel *ircChannel) connect(ircChannel, SIGNAL(topicSet(QString)), this, SLOT(setTopic(QString))); + connect(ircChannel, SIGNAL(encryptedSet(bool)), + this, SLOT(setEncrypted(bool))); connect(ircChannel, SIGNAL(ircUsersJoined(QList )), this, SLOT(join(QList ))); connect(ircChannel, SIGNAL(ircUserParted(IrcUser *)),