From 3264b5cab2325377d9a255183359fd1fd2de72a8 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Wed, 10 May 2023 17:00:33 -0400 Subject: [PATCH] FontEditor: Make update_title() private --- Userland/Applications/FontEditor/MainWidget.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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();