mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 17:17:35 +00:00
FontEditor: Convert to east const
This commit is contained in:
parent
de77e28360
commit
ca062d83db
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