summaryrefslogtreecommitdiff
path: root/Userland/Services/Taskbar
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2022-01-12 15:20:41 +0100
committerIdan Horowitz <idan.horowitz@gmail.com>2022-01-12 20:26:46 +0200
commit263348ff2d5877ad5f1008f6ca5a6f44a87f2c13 (patch)
tree2643ce08fde5910aa6d19a17469f573547efb455 /Userland/Services/Taskbar
parenta121c913c082662e2092a44d0af37e5e5078c22b (diff)
downloadserenity-263348ff2d5877ad5f1008f6ca5a6f44a87f2c13.zip
Taskbar: Include `ScreenLayout.h` from `Services` directory
While trying to include `Desktop.h` for the SDL2 port, compilation failed on finding this include. Specify the full include path to make it work.
Diffstat (limited to 'Userland/Services/Taskbar')
-rw-r--r--Userland/Services/Taskbar/TaskbarWindow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/Taskbar/TaskbarWindow.h b/Userland/Services/Taskbar/TaskbarWindow.h
index 395d375903..4def879275 100644
--- a/Userland/Services/Taskbar/TaskbarWindow.h
+++ b/Userland/Services/Taskbar/TaskbarWindow.h
@@ -12,7 +12,7 @@
#include <LibGUI/Widget.h>
#include <LibGUI/Window.h>
#include <LibGfx/ShareableBitmap.h>
-#include <WindowServer/ScreenLayout.h>
+#include <Services/WindowServer/ScreenLayout.h>
class TaskbarWindow final : public GUI::Window {
C_OBJECT(TaskbarWindow);