From 263348ff2d5877ad5f1008f6ca5a6f44a87f2c13 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Wed, 12 Jan 2022 15:20:41 +0100 Subject: [PATCH] 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. --- Userland/Services/Taskbar/TaskbarWindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #include #include -#include +#include class TaskbarWindow final : public GUI::Window { C_OBJECT(TaskbarWindow);