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

IRCClient: Rename IRCClientWindowFoo => IRCWindowFoo.

This commit is contained in:
Andreas Kling 2019-03-16 01:15:19 +01:00
parent 5c2d405e1f
commit fc7f700c20
9 changed files with 59 additions and 59 deletions

View file

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