1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

WindowServer: Add missing WSAPITypes.h include in WSClientConnection.h

This commit is contained in:
Andreas Kling 2019-07-27 10:33:06 +02:00
parent b3fe9cde52
commit 8ed078e5b2

View file

@ -7,6 +7,7 @@
#include <LibCore/CObject.h>
#include <LibCore/CoreIPCServer.h>
#include <LibDraw/GraphicsBitmap.h>
#include <WindowServer/WSAPITypes.h>
#include <WindowServer/WSEvent.h>
class WSWindow;
@ -35,7 +36,6 @@ public:
void notify_about_new_screen_rect(const Rect&);
void post_paint_message(WSWindow&);
private:
virtual void event(CEvent&) override;