diff options
author | Simon Wanner <skyrising@pvpctutorials.de> | 2022-04-09 09:28:38 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-09 23:48:18 +0200 |
commit | 206d6ece55e44117fd49525eeca5bd28d83ac5eb (patch) | |
tree | 42f45ba540faffd38608380dad02d7614c6e7e5a /Userland/Games/Chess/ChessWidget.cpp | |
parent | 6f8fd91f225c9eb3e5faeda1aaf6cee1e1f12cc9 (diff) | |
download | serenity-206d6ece55e44117fd49525eeca5bd28d83ac5eb.zip |
LibGfx: Move other font-related files to LibGfx/Font/
Diffstat (limited to 'Userland/Games/Chess/ChessWidget.cpp')
-rw-r--r-- | Userland/Games/Chess/ChessWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Games/Chess/ChessWidget.cpp b/Userland/Games/Chess/ChessWidget.cpp index 63e7815a94..5e013e464e 100644 --- a/Userland/Games/Chess/ChessWidget.cpp +++ b/Userland/Games/Chess/ChessWidget.cpp @@ -12,8 +12,8 @@ #include <LibCore/File.h> #include <LibGUI/MessageBox.h> #include <LibGUI/Painter.h> -#include <LibGfx/Font.h> -#include <LibGfx/FontDatabase.h> +#include <LibGfx/Font/Font.h> +#include <LibGfx/Font/FontDatabase.h> #include <LibGfx/Path.h> #include <unistd.h> |