modernize: Reformat ALL the source... again!
[quassel.git] / src / qtui / knotificationbackend.h
index 3b0a4af..026d188 100644 (file)
@@ -34,11 +34,11 @@ class KNotificationBackend : public AbstractNotificationBackend
     Q_OBJECT
 
 public:
-    KNotificationBackend(QObject *parent = nullptr);
+    KNotificationBackend(QObjectparent = nullptr);
 
-    void notify(const Notification &) override;
+    void notify(const Notification&) override;
     void close(uint notificationId) override;
-    SettingsPage *createConfigWidget() const override;
+    SettingsPagecreateConfigWidget() const override;
 
 private slots:
     void notificationActivated();
@@ -54,13 +54,12 @@ private:
     QList<QPair<uint, QPointer<KNotification>>> _notifications;
 };
 
-
 class KNotificationBackend::ConfigWidget : public SettingsPage
 {
     Q_OBJECT
 
 public:
-    ConfigWidget(QWidget *parent = nullptr);
+    ConfigWidget(QWidgetparent = nullptr);
 
     void save() override;
     void load() override;
@@ -69,5 +68,5 @@ private slots:
     void widgetChanged(bool);
 
 private:
-    KNotifyConfigWidget *_widget;
+    KNotifyConfigWidget_widget;
 };