From 45a59b4d7ef6b6b1bf4e20a89c403e7552ba37f7 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sat, 26 Nov 2022 10:28:44 +0100 Subject: [PATCH] Taskbar: Unbreak SDL2 port by changing include path Ports would not be able to find `QuickLaunchWidget.h` this way. --- 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 d10f55eb48..e5f1b30d77 100644 --- a/Userland/Services/Taskbar/TaskbarWindow.h +++ b/Userland/Services/Taskbar/TaskbarWindow.h @@ -7,13 +7,13 @@ #pragma once #include "ClockWidget.h" -#include "Taskbar/QuickLaunchWidget.h" #include "WindowList.h" #include #include #include #include #include +#include #include class TaskbarWindow final : public GUI::Window