diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 19:38:44 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-03 19:38:44 +0200 |
commit | a22774ee3fc609177a56c6d6ac992b86026abdbc (patch) | |
tree | ea4b2abe1e5b10a118ad434a4895235e364d8dd4 /Servers/WindowServer/WSWindow.h | |
parent | 318db1e48e49a6eec5a27355e39a38cbc243475c (diff) | |
download | serenity-a22774ee3fc609177a56c6d6ac992b86026abdbc.zip |
Taskbar: Start working on a taskbar app.
I originally thought I would do this inside WindowServer, but let's try to
make it as a standalone app that communicates with WindowServer instead.
That will allow us to use LibGUI. :^)
Diffstat (limited to 'Servers/WindowServer/WSWindow.h')
-rw-r--r-- | Servers/WindowServer/WSWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/WindowServer/WSWindow.h b/Servers/WindowServer/WSWindow.h index c080951c15..19cb969992 100644 --- a/Servers/WindowServer/WSWindow.h +++ b/Servers/WindowServer/WSWindow.h @@ -14,7 +14,7 @@ class WSMouseEvent; class WSWindow final : public WSMessageReceiver, public InlineLinkedListNode<WSWindow> { public: - WSWindow(WSClientConnection&, int window_id, bool modal); + WSWindow(WSClientConnection&, WSWindowType, int window_id, bool modal); WSWindow(WSMessageReceiver&, WSWindowType); virtual ~WSWindow() override; |