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

IRCClient: Update channel user list when a user joins or quits

This commit is contained in:
Brendan Coles 2020-04-02 14:39:25 +00:00 committed by Andreas Kling
parent 99aab4470a
commit 40b3203941
4 changed files with 37 additions and 1 deletions

View file

@ -68,6 +68,7 @@ public:
void handle_join(const String& nick, const String& hostmask);
void handle_part(const String& nick, const String& hostmask);
void handle_quit(const String& nick, const String& hostmask, const String& message);
void handle_topic(const String& nick, const String& topic);
IRCWindow& window() { return *m_window; }