summaryrefslogtreecommitdiff
path: root/Servers/WindowServer/WSWindow.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 19:38:44 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 19:38:44 +0200
commita22774ee3fc609177a56c6d6ac992b86026abdbc (patch)
treeea4b2abe1e5b10a118ad434a4895235e364d8dd4 /Servers/WindowServer/WSWindow.h
parent318db1e48e49a6eec5a27355e39a38cbc243475c (diff)
downloadserenity-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.h2
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;