modernize: Use auto where the type is clear from context
[quassel.git] / src / uisupport / fontselector.h
index 640c437..df12db0 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef FONTSELECTOR_H_
-#define FONTSELECTOR_H_
+#pragma once
+
+#include "uisupport-export.h"
 
 #include <QLabel>
 #include <QWidget>
 
-class FontSelector : public QWidget
+class UISUPPORT_EXPORT FontSelector : public QWidget
 {
     Q_OBJECT
     Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont)
 
 public :
-        FontSelector(QWidget *parent = 0);
+        FontSelector(QWidget *parent = nullptr);
 
     inline const QFont &selectedFont() const { return _font; }
 
@@ -41,7 +42,7 @@ signals:
     void fontChanged(const QFont &);
 
 protected:
-    void changeEvent(QEvent *e);
+    void changeEvent(QEvent *e) override;
 
 protected slots:
     void chooseFont();
@@ -50,6 +51,3 @@ private:
     QFont _font;
     QLabel *_demo;
 };
-
-
-#endif // FONTSELECTOR_H_