summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Progressbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/Progressbar.h')
-rw-r--r--Userland/Libraries/LibGUI/Progressbar.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/Progressbar.h b/Userland/Libraries/LibGUI/Progressbar.h
index 59da0b9ff1..c3ff489f0f 100644
--- a/Userland/Libraries/LibGUI/Progressbar.h
+++ b/Userland/Libraries/LibGUI/Progressbar.h
@@ -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
*/
@@ -13,7 +14,7 @@ namespace GUI {
class Progressbar : public Frame {
C_OBJECT(Progressbar)
public:
- virtual ~Progressbar() override;
+ virtual ~Progressbar() override = default;
void set_range(int min, int max);
void set_min(int min) { set_range(min, max()); }
@@ -56,7 +57,7 @@ class VerticalProgressbar final : public Progressbar {
C_OBJECT(VerticalProgressbar);
public:
- virtual ~VerticalProgressbar() override { }
+ virtual ~VerticalProgressbar() override = default;
private:
VerticalProgressbar()
@@ -69,7 +70,7 @@ class HorizontalProgressbar final : public Progressbar {
C_OBJECT(HorizontalProgressbar);
public:
- virtual ~HorizontalProgressbar() override { }
+ virtual ~HorizontalProgressbar() override = default;
private:
HorizontalProgressbar()