summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/FontPicker.h
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2022-04-01 20:58:27 +0300
committerLinus Groh <mail@linusgroh.de>2022-04-01 21:24:45 +0100
commit086969277e74d8ba065bf8145d3aeb0dec0bfee5 (patch)
tree02b3699a66735ef806d9b46353491f18f8e4e7b4 /Userland/Libraries/LibGUI/FontPicker.h
parent0376c127f6e98e03607700d0b3f5154b7014b2f8 (diff)
downloadserenity-086969277e74d8ba065bf8145d3aeb0dec0bfee5.zip
Everywhere: Run clang-format
Diffstat (limited to 'Userland/Libraries/LibGUI/FontPicker.h')
-rw-r--r--Userland/Libraries/LibGUI/FontPicker.h6
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;