diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/GroupBox.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/GroupBox.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Userland/Libraries/LibGUI/GroupBox.cpp b/Userland/Libraries/LibGUI/GroupBox.cpp index f0f4a853ff..2b410e1c69 100644 --- a/Userland/Libraries/LibGUI/GroupBox.cpp +++ b/Userland/Libraries/LibGUI/GroupBox.cpp @@ -1,5 +1,6 @@ /* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -20,10 +21,6 @@ GroupBox::GroupBox(StringView title) REGISTER_STRING_PROPERTY("title", title, set_title); } -GroupBox::~GroupBox() -{ -} - Margins GroupBox::content_margins() const { return { |