LibCore: Move GIODevice hierarchy from LibGUI to LibCore.

This commit is contained in:
Andreas Kling 2019-04-10 20:22:23 +02:00
commit cfd6e6cc36
Notes: sideshowbarker 2024-07-19 14:46:07 +09:00
19 changed files with 112 additions and 112 deletions

View file

@ -32,7 +32,7 @@ IRCClient::IRCClient()
, m_client_window_list_model(IRCWindowListModel::create(*this))
, m_log(IRCLogBuffer::create())
{
m_socket = new GTCPSocket(this);
m_socket = new CTCPSocket(this);
}
IRCClient::~IRCClient()