X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=core%2Fcoreproxy.h;h=4f6185aa816a50fb4ef2df06ecaa0e4b5eb6c0c0;hp=8cdea8310302333c8757316d8b861991a7f65957;hb=117a8a4d7ced61a3e374f20c74bea1834386a1d7;hpb=057883f768f86257c9dbefeb5ef12403b207b773 diff --git a/core/coreproxy.h b/core/coreproxy.h index 8cdea831..4f6185aa 100644 --- a/core/coreproxy.h +++ b/core/coreproxy.h @@ -48,6 +48,7 @@ class CoreProxy : public QObject { inline void csSetNicks(QString net, QString buf, QStringList nicks) { send(CS_SET_NICKS, net, buf, nicks); } inline void csNickAdded(QString net, QString nick, VarMap props) { send(CS_NICK_ADDED, net, nick, props); } inline void csNickRemoved(QString net, QString nick) { send(CS_NICK_REMOVED, net, nick); } + inline void csNickRenamed(QString net, QString oldn, QString newn) { send(CS_NICK_RENAMED, net, oldn, newn); } inline void csNickUpdated(QString net, QString nick, VarMap props) { send(CS_NICK_UPDATED, net, nick, props); } inline void csOwnNickSet(QString net, QString nick) { send(CS_OWN_NICK_SET, net, nick); }