diff --git a/Userland/Applications/FontEditor/MainWidget.h b/Userland/Applications/FontEditor/MainWidget.h index 21ee57fe92..8f4154242e 100644 --- a/Userland/Applications/FontEditor/MainWidget.h +++ b/Userland/Applications/FontEditor/MainWidget.h @@ -32,7 +32,6 @@ public: ErrorOr open_file(StringView, NonnullOwnPtr); ErrorOr save_file(StringView, NonnullOwnPtr); bool request_close(); - void update_title(); String const& path() { return m_path; } Gfx::BitmapFont const& edited_font() { return *m_edited_font; } @@ -65,8 +64,11 @@ private: void undo(); void redo(); void did_modify_font(); + void update_statusbar(); void update_preview(); + void update_title(); + void set_scale_and_save(i32); ErrorOr copy_selected_glyphs();