From: Marcus Eggenberger Date: Wed, 26 Aug 2009 11:08:53 +0000 (+0200) Subject: propagate topic changes properly X-Git-Tag: 0.5-rc1~2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=f9f40188bcdbc787ad3e2f5e29ad5223c755b252 propagate topic changes properly --- diff --git a/src/common/ircchannel.cpp b/src/common/ircchannel.cpp index 88d1e851..3fd0ad5e 100644 --- a/src/common/ircchannel.cpp +++ b/src/common/ircchannel.cpp @@ -116,6 +116,7 @@ QByteArray IrcChannel::encodeString(const QString &string) const { // ==================== void IrcChannel::setTopic(const QString &topic) { _topic = topic; + SYNC(ARG(topic)) emit topicSet(topic); }