summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2020-12-27 18:13:40 +0100
committerAndreas Kling <kling@serenityos.org>2020-12-27 18:36:43 +0100
commit2e7395d6da965f0deb5930517b1a4a9cfda1bebc (patch)
treebe3f64f1a95981fe75919431a7294e25e97747bf
parentdc55fbeb791aef5bc5c4793a029390939da0b07a (diff)
downloadserenity-2e7395d6da965f0deb5930517b1a4a9cfda1bebc.zip
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.
-rw-r--r--Libraries/LibGUI/Icon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/Icon.h b/Libraries/LibGUI/Icon.h
index 7aedbe2938..534729af7f 100644
--- a/Libraries/LibGUI/Icon.h
+++ b/Libraries/LibGUI/Icon.h
@@ -29,7 +29,7 @@
#include <AK/HashMap.h>
#include <AK/NonnullRefPtr.h>
#include <AK/RefCounted.h>
-#include <LibGfx/Forward.h>
+#include <LibGfx/Bitmap.h>
namespace GUI {