From 2e7395d6da965f0deb5930517b1a4a9cfda1bebc Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 27 Dec 2020 18:13:40 +0100 Subject: [PATCH] LibGUI: Include LibGfx/Bitmap.h in Icon.h It doesn't compile with just the forwarding headers when nothing else (e.g. Button.h) pulls in Bitmap.h. --- Libraries/LibGUI/Icon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/Icon.h b/Libraries/LibGUI/Icon.h index 7aedbe2938d..534729af7f3 100644 --- a/Libraries/LibGUI/Icon.h +++ b/Libraries/LibGUI/Icon.h @@ -29,7 +29,7 @@ #include #include #include -#include +#include namespace GUI {