diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-14 23:53:11 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-14 23:53:11 +0100 |
commit | 34c7322d77ce4dba73d985e4a1869efe58d96564 (patch) | |
tree | ab5d6a54121c5f6c27974cdf1b16910dc3ea0827 /Applications/FontEditor | |
parent | 08cae2773d7b4ab663d05fc0a89069a4943e6218 (diff) | |
download | serenity-34c7322d77ce4dba73d985e4a1869efe58d96564.zip |
LibGUI: Remove some header dependencies from Widget.h
Diffstat (limited to 'Applications/FontEditor')
-rw-r--r-- | Applications/FontEditor/GlyphEditorWidget.cpp | 1 | ||||
-rw-r--r-- | Applications/FontEditor/GlyphMapWidget.cpp | 3 | ||||
-rw-r--r-- | Applications/FontEditor/main.cpp | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/Applications/FontEditor/GlyphEditorWidget.cpp b/Applications/FontEditor/GlyphEditorWidget.cpp index 8dbb0de9a8..d6b7ff48d1 100644 --- a/Applications/FontEditor/GlyphEditorWidget.cpp +++ b/Applications/FontEditor/GlyphEditorWidget.cpp @@ -26,6 +26,7 @@ #include "GlyphEditorWidget.h" #include <LibGUI/Painter.h> +#include <LibGfx/Font.h> GlyphEditorWidget::GlyphEditorWidget(Gfx::Font& mutable_font, GUI::Widget* parent) : GUI::Frame(parent) diff --git a/Applications/FontEditor/GlyphMapWidget.cpp b/Applications/FontEditor/GlyphMapWidget.cpp index 3f64194a5b..e8bcf4d908 100644 --- a/Applications/FontEditor/GlyphMapWidget.cpp +++ b/Applications/FontEditor/GlyphMapWidget.cpp @@ -25,8 +25,9 @@ */ #include "GlyphMapWidget.h" -#include <LibGfx/Palette.h> #include <LibGUI/Painter.h> +#include <LibGfx/Font.h> +#include <LibGfx/Palette.h> GlyphMapWidget::GlyphMapWidget(Gfx::Font& mutable_font, GUI::Widget* parent) : GUI::Frame(parent) diff --git a/Applications/FontEditor/main.cpp b/Applications/FontEditor/main.cpp index fded4827ea..1183daff39 100644 --- a/Applications/FontEditor/main.cpp +++ b/Applications/FontEditor/main.cpp @@ -31,6 +31,7 @@ #include <LibGUI/MenuBar.h> #include <LibGUI/Window.h> #include <LibGfx/Bitmap.h> +#include <LibGfx/Font.h> #include <stdio.h> int main(int argc, char** argv) |