cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / settingspages / backlogsettingspage.h
index 35b0f41..2691438 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2016 by the Quassel Project                        *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -24,6 +24,7 @@
 #include <QHash>
 
 #include "settingspage.h"
+
 #include "ui_backlogsettingspage.h"
 
 class BacklogSettingsPage : public SettingsPage
@@ -31,15 +32,15 @@ class BacklogSettingsPage : public SettingsPage
     Q_OBJECT
 
 public:
-    BacklogSettingsPage(QWidget *parent = 0);
+    BacklogSettingsPage(QWidget* parent = nullptr);
 
-    inline QString settingsKey() const { return "Backlog"; }
-    bool hasDefaults() const;
+    inline QString settingsKey() const override { return "Backlog"; }
+    bool hasDefaults() const override;
 
 public slots:
-    void save();
-    void load();
-    void defaults();
+    void save() override;
+    void load() override;
+    void defaults() override;
 
 private slots:
     void widgetHasChanged();
@@ -48,5 +49,4 @@ private:
     Ui::BacklogSettingsPage ui;
 };
 
-
 #endif