summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint
diff options
context:
space:
mode:
authorSimon Wanner <skyrising@pvpctutorials.de>2022-04-09 09:28:38 +0200
committerAndreas Kling <kling@serenityos.org>2022-04-09 23:48:18 +0200
commit206d6ece55e44117fd49525eeca5bd28d83ac5eb (patch)
tree42f45ba540faffd38608380dad02d7614c6e7e5a /Userland/Applications/PixelPaint
parent6f8fd91f225c9eb3e5faeda1aaf6cee1e1f12cc9 (diff)
downloadserenity-206d6ece55e44117fd49525eeca5bd28d83ac5eb.zip
LibGfx: Move other font-related files to LibGfx/Font/
Diffstat (limited to 'Userland/Applications/PixelPaint')
-rw-r--r--Userland/Applications/PixelPaint/Filters/Bloom.cpp2
-rw-r--r--Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/PixelPaint/Filters/Bloom.cpp b/Userland/Applications/PixelPaint/Filters/Bloom.cpp
index 614388a606..3f16d93120 100644
--- a/Userland/Applications/PixelPaint/Filters/Bloom.cpp
+++ b/Userland/Applications/PixelPaint/Filters/Bloom.cpp
@@ -12,7 +12,7 @@
#include <LibGfx/BitmapMixer.h>
#include <LibGfx/Filters/FastBoxBlurFilter.h>
#include <LibGfx/Filters/LumaFilter.h>
-#include <LibGfx/FontDatabase.h>
+#include <LibGfx/Font/FontDatabase.h>
namespace PixelPaint::Filters {
diff --git a/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp b/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp
index 298e8283e1..af03fd7530 100644
--- a/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp
+++ b/Userland/Applications/PixelPaint/LayerPropertiesWidget.cpp
@@ -13,7 +13,7 @@
#include <LibGUI/Label.h>
#include <LibGUI/OpacitySlider.h>
#include <LibGUI/TextBox.h>
-#include <LibGfx/Font.h>
+#include <LibGfx/Font/Font.h>
REGISTER_WIDGET(PixelPaint, LayerPropertiesWidget);