diff options
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibGUI/CheckBox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/CheckBox.h b/Userland/Libraries/LibGUI/CheckBox.h index f5899f0ff3..f39f938057 100644 --- a/Userland/Libraries/LibGUI/CheckBox.h +++ b/Userland/Libraries/LibGUI/CheckBox.h @@ -29,9 +29,10 @@ public: CheckBoxPosition checkbox_position() const { return m_checkbox_position; } void set_checkbox_position(CheckBoxPosition value) { m_checkbox_position = value; } -private: +protected: explicit CheckBox(String = {}); +private: void size_to_fit(); // These don't make sense for a check box, so hide them. |