X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ffontselector.h;h=df12db08cb45085108d45897d86f459ec91f9fea;hp=1359f7d05b8ff9df39ff5dad60226b83a6745388;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=92fc8c5b119111a35ab8423c3cbde5b2a022badf diff --git a/src/uisupport/fontselector.h b/src/uisupport/fontselector.h index 1359f7d0..df12db08 100644 --- a/src/uisupport/fontselector.h +++ b/src/uisupport/fontselector.h @@ -31,7 +31,7 @@ class UISUPPORT_EXPORT FontSelector : public QWidget Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) public : - FontSelector(QWidget *parent = 0); + FontSelector(QWidget *parent = nullptr); inline const QFont &selectedFont() const { return _font; } @@ -42,7 +42,7 @@ signals: void fontChanged(const QFont &); protected: - void changeEvent(QEvent *e); + void changeEvent(QEvent *e) override; protected slots: void chooseFont();