1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +00:00

IRCClient: Add ability to change nickname.

This commit is contained in:
Andreas Kling 2019-03-20 04:21:58 +01:00
parent 4ea625e08b
commit 67009cee8e
10 changed files with 89 additions and 7 deletions

View file

@ -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&);