diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/FontPicker.h')
-rw-r--r-- | Userland/Libraries/LibGUI/FontPicker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/FontPicker.h b/Userland/Libraries/LibGUI/FontPicker.h index a40a28f168..376bcfa881 100644 --- a/Userland/Libraries/LibGUI/FontPicker.h +++ b/Userland/Libraries/LibGUI/FontPicker.h @@ -20,14 +20,14 @@ public: virtual ~FontPicker() override = default; RefPtr<Gfx::Font> font() const { return m_font; } - void set_font(const Gfx::Font*); + void set_font(Gfx::Font const*); private: - FontPicker(Window* parent_window = nullptr, const Gfx::Font* current_font = nullptr, bool fixed_width_only = false); + FontPicker(Window* parent_window = nullptr, Gfx::Font const* current_font = nullptr, bool fixed_width_only = false); void update_font(); - const bool m_fixed_width_only; + bool const m_fixed_width_only; RefPtr<Gfx::Font> m_font; |