mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 03:09:08 +00:00
LibGUI: Remove parent parameter to GUI::Widget constructor
This commit is contained in:
@@ -52,13 +52,8 @@ static const int s_checked_bitmap_height = 9;
|
||||
static const int s_box_width = 13;
|
||||
static const int s_box_height = 13;
|
||||
|
||||
CheckBox::CheckBox(Widget* parent)
|
||||
: AbstractButton(parent)
|
||||
{
|
||||
}
|
||||
|
||||
CheckBox::CheckBox(const StringView& text, Widget* parent)
|
||||
: AbstractButton(text, parent)
|
||||
CheckBox::CheckBox(const StringView& text)
|
||||
: AbstractButton(text)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user