1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:28:11 +00:00

IRCClient: Rename IRCSubWindow => IRCClientWindow.

This commit is contained in:
Andreas Kling 2019-03-15 13:20:46 +01:00
parent f004db19d0
commit eba5fd3f46
7 changed files with 26 additions and 26 deletions

View file

@ -8,7 +8,7 @@
class IRCChannel;
class IRCQuery;
class IRCSubWindow;
class IRCClientWindow;
class GNotifier;
class IRCClient {
@ -33,8 +33,8 @@ public:
Function<void(const String& name)> on_query_message;
Function<void()> on_server_message;
void register_subwindow(IRCSubWindow&);
void unregister_subwindow(IRCSubWindow&);
void register_subwindow(IRCClientWindow&);
void unregister_subwindow(IRCClientWindow&);
private:
struct Message {
@ -66,7 +66,7 @@ private:
HashMap<String, RetainPtr<IRCChannel>> m_channels;
HashMap<String, RetainPtr<IRCQuery>> m_queries;
IRCSubWindow* m_server_subwindow { nullptr };
IRCClientWindow* m_server_subwindow { nullptr };
Retained<IRCLogBuffer> m_log;
};