From bae36a7264fb97b64ac49c6b430507f4cbb08694 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Tue, 5 Jul 2022 05:51:30 -0400 Subject: [PATCH] FontEditor: Remove unused headers and member variables --- Userland/Applications/FontEditor/FontEditor.cpp | 2 -- Userland/Applications/FontEditor/NewFontDialog.h | 5 ----- 2 files changed, 7 deletions(-) diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp index 1480be6841..805af9cdf0 100644 --- a/Userland/Applications/FontEditor/FontEditor.cpp +++ b/Userland/Applications/FontEditor/FontEditor.cpp @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include @@ -32,7 +31,6 @@ #include #include #include -#include #include #include #include diff --git a/Userland/Applications/FontEditor/NewFontDialog.h b/Userland/Applications/FontEditor/NewFontDialog.h index 8299125733..86cff47286 100644 --- a/Userland/Applications/FontEditor/NewFontDialog.h +++ b/Userland/Applications/FontEditor/NewFontDialog.h @@ -9,7 +9,6 @@ #include #include #include -#include class NewFontDialog final : public GUI::WizardDialog { C_OBJECT(NewFontDialog); @@ -40,10 +39,6 @@ private: bool is_fixed_width; } m_new_font_metadata; - RefPtr m_font_selection_page; - RefPtr m_select_font_combobox; - RefPtr m_browse_button; - RefPtr m_font_properties_page; RefPtr m_name_textbox; RefPtr m_family_textbox;