mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 08:36:12 +00:00
FontEditor: Convert to east const
This commit is contained in:
parent
de77e28360
commit
ca062d83db
Notes:
sideshowbarker
2024-07-17 23:20:12 +09:00
Author: https://github.com/thankyouverycool
Commit: ca062d83db
Pull-request: https://github.com/SerenityOS/serenity/pull/11132
8 changed files with 19 additions and 19 deletions
|
@ -21,13 +21,13 @@ public:
|
|||
virtual ~FontEditorWidget() override;
|
||||
|
||||
bool open_file(String const&);
|
||||
bool save_as(const String&);
|
||||
bool save_as(String const&);
|
||||
bool request_close();
|
||||
void update_title();
|
||||
|
||||
const String& path() { return m_path; }
|
||||
const Gfx::BitmapFont& edited_font() { return *m_edited_font; }
|
||||
void initialize(const String& path, RefPtr<Gfx::BitmapFont>&&);
|
||||
String const& path() { return m_path; }
|
||||
Gfx::BitmapFont const& edited_font() { return *m_edited_font; }
|
||||
void initialize(String const& path, RefPtr<Gfx::BitmapFont>&&);
|
||||
void initialize_menubar(GUI::Window&);
|
||||
|
||||
bool is_showing_font_metadata() { return m_font_metadata; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue