diff options
Diffstat (limited to 'Userland/DevTools/HackStudio/Editor.h')
-rw-r--r-- | Userland/DevTools/HackStudio/Editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/DevTools/HackStudio/Editor.h b/Userland/DevTools/HackStudio/Editor.h index 705fe5b811..75755e0f8e 100644 --- a/Userland/DevTools/HackStudio/Editor.h +++ b/Userland/DevTools/HackStudio/Editor.h @@ -1,7 +1,7 @@ /* * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> * Copyright (c) 2020-2022, Itamar S. <itamar8910@gmail.com> - * Copyright (c) 2018-2021, the SerenityOS developers. + * Copyright (c) 2018-2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ @@ -26,7 +26,7 @@ class Editor final : public GUI::TextEditor { public: static ErrorOr<NonnullRefPtr<Editor>> try_create(); - virtual ~Editor() override; + virtual ~Editor() override = default; Function<void()> on_focus; Function<void(String)> on_open; |