mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
LibGUI: Make Checkbox constructor protected
This commit is contained in:
parent
fac4529082
commit
281b319588
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue