diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/Model.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/Model.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Userland/Libraries/LibGUI/Model.cpp b/Userland/Libraries/LibGUI/Model.cpp index 8989751144..7ffa5c1fc4 100644 --- a/Userland/Libraries/LibGUI/Model.cpp +++ b/Userland/Libraries/LibGUI/Model.cpp @@ -1,6 +1,7 @@ /* * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com> + * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -11,13 +12,9 @@ namespace GUI { -Model::Model() -{ -} +Model::Model() = default; -Model::~Model() -{ -} +Model::~Model() = default; void Model::register_view(Badge<AbstractView>, AbstractView& view) { |