mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
171 B
C++
12 lines
171 B
C++
#include "IRCSubWindow.h"
|
|
|
|
IRCSubWindow::IRCSubWindow(const String& name, GWidget* parent)
|
|
: GWidget(parent)
|
|
, m_name(name)
|
|
{
|
|
}
|
|
|
|
IRCSubWindow::~IRCSubWindow()
|
|
{
|
|
}
|