1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20: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

@ -18,6 +18,7 @@ private:
void setup_actions();
void setup_menus();
void setup_widgets();
void update_title();
IRCWindow& create_window(void* owner, IRCWindow::Type, const String& name);
IRCClient m_client;
@ -28,4 +29,5 @@ private:
RetainPtr<GAction> m_whois_action;
RetainPtr<GAction> m_open_query_action;
RetainPtr<GAction> m_close_query_action;
RetainPtr<GAction> m_change_nick_action;
};