X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=562c422d1a4aa8e5665a0912743bc74c96a5eddb;hp=94e62b152924ee710c29222440102b6add831906;hb=b5385b3ddf6f0e8df8f0af7275b59dcc1fcd0ed1;hpb=6b4a88135c3af2822a88e2dea51e6a1194a45171 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 94e62b15..562c422d 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -55,6 +55,7 @@ public slots: void handle317(const QString &prefix, const QList ¶ms); // RPL_WHOISIDLE void handle318(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOIS void handle319(const QString &prefix, const QList ¶ms); // RPL_WHOISCHANNELS + void handle320(const QString &prefix, const QList ¶ms); // RPL_WHOISVIRT (is identified to services) void handle331(const QString &prefix, const QList ¶ms); // RPL_NOTOPIC void handle332(const QString &prefix, const QList ¶ms); // RPL_TOPIC void handle333(const QString &prefix, const QList ¶ms); // Topic set by... @@ -66,6 +67,9 @@ public slots: void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); +signals: + void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend + private: void tryNextNick(const QString &errnick); bool _whois;