diff options
author | Linus Groh <mail@linusgroh.de> | 2020-12-27 18:13:40 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-27 18:36:43 +0100 |
commit | 2e7395d6da965f0deb5930517b1a4a9cfda1bebc (patch) | |
tree | be3f64f1a95981fe75919431a7294e25e97747bf | |
parent | dc55fbeb791aef5bc5c4793a029390939da0b07a (diff) | |
download | serenity-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.h | 2 |
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 { |