mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 21:59:07 +00:00
LibGUI: Make Checkbox constructor protected
This commit is contained in:
parent
fac4529082
commit
281b319588
Notes:
sideshowbarker
2024-07-17 08:36:00 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: 281b319588
Pull-request: https://github.com/SerenityOS/serenity/pull/14664
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
Add a link
Reference in a new issue