mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
LibGUI: Remove parent parameter to GUI::Widget constructor
This commit is contained in:
@@ -32,14 +32,8 @@
|
||||
|
||||
namespace GUI {
|
||||
|
||||
GroupBox::GroupBox(Widget* parent)
|
||||
: GroupBox({}, parent)
|
||||
{
|
||||
}
|
||||
|
||||
GroupBox::GroupBox(const StringView& title, Widget* parent)
|
||||
: Widget(parent)
|
||||
, m_title(title)
|
||||
GroupBox::GroupBox(const StringView& title)
|
||||
: m_title(title)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user