1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:17:44 +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

@ -3,7 +3,7 @@
#include <LibGUI/GWindow.h>
#include <LibGUI/GWidget.h>
#include "IRCClient.h"
#include "IRCSubWindow.h"
#include "IRCClientWindow.h"
class IRCAppWindow : public GWindow {
public:
@ -14,10 +14,10 @@ private:
void setup_client();
void setup_widgets();
void create_subwindow(IRCSubWindow::Type, const String& name);
void create_subwindow(IRCClientWindow::Type, const String& name);
IRCClient m_client;
GWidget* m_subwindow_container { nullptr };
Vector<IRCSubWindow*> m_subwindows;
Vector<IRCClientWindow*> m_subwindows;
};