mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibCore+LibGUI: Remove GEventLoop and use CEventLoop everywhere
GEventLoop was just a dummy subclass of CEventLoop anyway. The only thing it actually did was make sure a GWindowServerConnectionw was instantiated. We now take care of that in GApplication instead. CEventLoop is now non-virtual and a little less confusing. :^)
This commit is contained in:
@@ -21,7 +21,8 @@ GApplication::GApplication(int argc, char** argv)
|
||||
(void)argv;
|
||||
ASSERT(!s_the);
|
||||
s_the = this;
|
||||
m_event_loop = make<GEventLoop>();
|
||||
m_event_loop = make<CEventLoop>();
|
||||
GWindowServerConnection::the();
|
||||
}
|
||||
|
||||
GApplication::~GApplication()
|
||||
|
||||
Reference in New Issue
Block a user