FontEditor: Remove unused includes

This commit is contained in:
thankyouverycool 2022-12-15 14:18:00 -05:00 committed by Andreas Kling
parent 9b3335723f
commit b8969ffe97
Notes: sideshowbarker 2024-07-17 02:59:20 +09:00
2 changed files with 0 additions and 7 deletions

View File

@ -6,13 +6,9 @@
*/
#include "GlyphEditorWidget.h"
#include <AK/StringBuilder.h>
#include <AK/UnicodeUtils.h>
#include <LibGUI/Clipboard.h>
#include <LibGUI/Painter.h>
#include <LibGfx/Font/BitmapFont.h>
#include <LibGfx/Palette.h>
#include <string.h>
REGISTER_WIDGET(FontEditor, GlyphEditorWidget);

View File

@ -12,11 +12,8 @@
#include <LibDesktop/Launcher.h>
#include <LibGUI/Application.h>
#include <LibGUI/Icon.h>
#include <LibGUI/Menubar.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/Window.h>
#include <LibGfx/Font/BitmapFont.h>
#include <LibGfx/Font/FontDatabase.h>
#include <LibMain/Main.h>
ErrorOr<int> serenity_main(Main::Arguments arguments)