diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/CheckBox.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/CheckBox.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/CheckBox.cpp b/Userland/Libraries/LibWeb/Layout/CheckBox.cpp index 03a81aea7d..8b226fee5d 100644 --- a/Userland/Libraries/LibWeb/Layout/CheckBox.cpp +++ b/Userland/Libraries/LibWeb/Layout/CheckBox.cpp @@ -20,9 +20,7 @@ CheckBox::CheckBox(DOM::Document& document, HTML::HTMLInputElement& element, Non set_intrinsic_height(13); } -CheckBox::~CheckBox() -{ -} +CheckBox::~CheckBox() = default; RefPtr<Painting::Paintable> CheckBox::create_paintable() const { |