1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:47:45 +00:00

WindowServer: Rename WSMessage* => WSEvent*.

Since I'm on a roll here, I'll just rename WSMessageFoo to WSEventFoo now
that these inherit from CEventFoo anyway.
This commit is contained in:
Andreas Kling 2019-04-14 05:23:37 +02:00
parent de184d0999
commit 94a5e08faf
17 changed files with 191 additions and 191 deletions

View file

@ -1,6 +1,6 @@
#include <WindowServer/WSScreen.h>
#include <WindowServer/WSWindowManager.h>
#include <WindowServer/WSMessageLoop.h>
#include <WindowServer/WSEventLoop.h>
#include <signal.h>
#include <stdio.h>
@ -16,11 +16,11 @@ int main(int, char**)
return 1;
}
WSMessageLoop loop;
WSEventLoop loop;
WSScreen screen(1024, 768);
WSWindowManager window_manager;
dbgprintf("Entering WindowServer main loop.\n");
WSMessageLoop::the().exec();
WSEventLoop::the().exec();
ASSERT_NOT_REACHED();
}