diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-20 04:21:58 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-20 04:21:58 +0100 |
commit | 67009cee8e6db04a3ba3b07a7bbde8c9e8e21b8a (patch) | |
tree | 28c2a17cccd4dbb746e473fa7ba08d1260c00010 /Applications/IRCClient/IRCChannel.h | |
parent | 4ea625e08b47e385aa0b465d91186023da64b7b9 (diff) | |
download | serenity-67009cee8e6db04a3ba3b07a7bbde8c9e8e21b8a.zip |
IRCClient: Add ability to change nickname.
Diffstat (limited to 'Applications/IRCClient/IRCChannel.h')
-rw-r--r-- | Applications/IRCClient/IRCChannel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Applications/IRCClient/IRCChannel.h b/Applications/IRCClient/IRCChannel.h index 12c0ae491f..8770dd181d 100644 --- a/Applications/IRCClient/IRCChannel.h +++ b/Applications/IRCClient/IRCChannel.h @@ -49,6 +49,8 @@ public: String topic() const { return m_topic; } + void notify_nick_changed(const String& old_nick, const String& new_nick); + private: IRCChannel(IRCClient&, const String&); |