mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:47:36 +00:00
FontEditor: Make update_title() private
This commit is contained in:
parent
ed3f9347f3
commit
3264b5cab2
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,6 @@ public:
|
|||
ErrorOr<void> open_file(StringView, NonnullOwnPtr<Core::File>);
|
||||
ErrorOr<void> save_file(StringView, NonnullOwnPtr<Core::File>);
|
||||
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<void> copy_selected_glyphs();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue