modernize: Reformat ALL the source... again!
[quassel.git] / src / qtui / systraynotificationbackend.h
index 0e78600..4f9092b 100644 (file)
@@ -31,20 +31,20 @@ class SystrayNotificationBackend : public AbstractNotificationBackend
     Q_OBJECT
 
 public:
-    SystrayNotificationBackend(QObject *parent = nullptr);
+    SystrayNotificationBackend(QObjectparent = nullptr);
 
-    void notify(const Notification &) override;
+    void notify(const Notification&) override;
     void close(uint notificationId) override;
-    SettingsPage *createConfigWidget() const override;
+    SettingsPagecreateConfigWidget() const override;
 
 protected:
-    bool eventFilter(QObject *obj, QEvent *event) override;
+    bool eventFilter(QObject* obj, QEvent* event) override;
 
 private slots:
     void onNotificationActivated(uint notificationId);
     void onNotificationActivated(SystemTray::ActivationReason);
 
-    void showBubbleChanged(const QVariant &);
+    void showBubbleChanged(const QVariant&);
     void updateToolTip();
 
 private:
@@ -55,13 +55,12 @@ private:
     bool _blockActivation{false};
 };
 
-
 class SystrayNotificationBackend::ConfigWidget : public SettingsPage
 {
     Q_OBJECT
 
 public:
-    ConfigWidget(QWidget *parent = nullptr);
+    ConfigWidget(QWidgetparent = nullptr);
     void save() override;
     void load() override;
     bool hasDefaults() const override;
@@ -71,6 +70,6 @@ private slots:
     void widgetChanged();
 
 private:
-    QCheckBox *_showBubbleBox;
+    QCheckBox_showBubbleBox;
     bool _showBubble;
 };