diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 01:15:19 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-16 01:15:19 +0100 |
commit | fc7f700c201f1202fd9534d626b423b4e09f44a0 (patch) | |
tree | f2e251a64bb31a43187568c0ec39a18983f4ec17 /Applications/IRCClient/IRCAppWindow.h | |
parent | 5c2d405e1fa9214d095b51ac2f9de601f97550a8 (diff) | |
download | serenity-fc7f700c201f1202fd9534d626b423b4e09f44a0.zip |
IRCClient: Rename IRCClientWindowFoo => IRCWindowFoo.
Diffstat (limited to 'Applications/IRCClient/IRCAppWindow.h')
-rw-r--r-- | Applications/IRCClient/IRCAppWindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Applications/IRCClient/IRCAppWindow.h b/Applications/IRCClient/IRCAppWindow.h index 2a7068c5d1..e882203203 100644 --- a/Applications/IRCClient/IRCAppWindow.h +++ b/Applications/IRCClient/IRCAppWindow.h @@ -3,7 +3,7 @@ #include <LibGUI/GWindow.h> #include <LibGUI/GWidget.h> #include "IRCClient.h" -#include "IRCClientWindow.h" +#include "IRCWindow.h" class GAction; class GStackWidget; @@ -19,8 +19,8 @@ private: void setup_menus(); void setup_widgets(); - IRCClientWindow& create_subwindow(IRCClientWindow::Type, const String& name); - IRCClientWindow& ensure_window(IRCClientWindow::Type, const String& name); + IRCWindow& create_subwindow(IRCWindow::Type, const String& name); + IRCWindow& ensure_window(IRCWindow::Type, const String& name); IRCClient m_client; |