modernize: Reformat ALL the source... again!
[quassel.git] / src / uisupport / fontselector.h
index df12db0..62527eb 100644 (file)
@@ -30,24 +30,24 @@ class UISUPPORT_EXPORT FontSelector : public QWidget
     Q_OBJECT
     Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont)
 
-public :
-        FontSelector(QWidget *parent = nullptr);
+public:
+    FontSelector(QWidget* parent = nullptr);
 
-    inline const QFont &selectedFont() const { return _font; }
+    inline const QFontselectedFont() const { return _font; }
 
 public slots:
-    void setSelectedFont(const QFont &font);
+    void setSelectedFont(const QFontfont);
 
 signals:
-    void fontChanged(const QFont &);
+    void fontChanged(const QFont&);
 
 protected:
-    void changeEvent(QEvent *e) override;
+    void changeEvent(QEvente) override;
 
 protected slots:
     void chooseFont();
 
 private:
     QFont _font;
-    QLabel *_demo;
+    QLabel_demo;
 };