src: Yearly copyright bump
[quassel.git] / src / qtui / settingspages / coreconnectionsettingspage.h
index a1a7f79..e0c6d7f 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2015 by the Quassel Project                        *
+ *   Copyright (C) 2005-2019 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -31,14 +31,14 @@ class CoreConnectionSettingsPage : public SettingsPage
     Q_OBJECT
 
 public:
-    CoreConnectionSettingsPage(QWidget *parent = 0);
+    CoreConnectionSettingsPage(QWidget* parent = nullptr);
 
-    inline bool hasDefaults() const { return true; }
+    inline bool hasDefaults() const override { return true; }
 
 public slots:
-    void save();
-    void load();
-    void defaults();
+    void save() override;
+    void load() override;
+    void defaults() override;
 
 signals:
 
@@ -52,8 +52,7 @@ private:
     void setRadioButtons(CoreConnectionSettings::NetworkDetectionMode mode);
     CoreConnectionSettings::NetworkDetectionMode modeFromRadioButtons() const;
 
-    inline QString settingsKey() const { return QString("CoreConnection"); }
+    inline QString settingsKey() const override { return QString("CoreConnection"); }
 };
 
-
 #endif