mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:17:44 +00:00
IRCClient: Rename IRCSubWindow => IRCClientWindow.
This commit is contained in:
parent
f004db19d0
commit
eba5fd3f46
7 changed files with 26 additions and 26 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue