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

WindowServer: Prune more kernel-related gunk.

This commit is contained in:
Andreas Kling 2019-02-16 12:25:47 +01:00
parent 09aaa41e62
commit c3d36a5fe9
4 changed files with 9 additions and 18 deletions

View file

@ -13,9 +13,6 @@ class WSMenu;
class WSMenuBar;
struct WSAPI_ServerMessage;
// FIXME: Remove.
class Process;
class WSClientConnection final : public WSMessageReceiver {
public:
explicit WSClientConnection(int fd);
@ -72,7 +69,4 @@ private:
int m_next_menubar_id { 10000 };
int m_next_menu_id { 20000 };
int m_next_window_id { 1982 };
// FIXME: Remove.
WeakPtr<Process> m_process;
};