X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.h;fp=src%2Fqtui%2Ftopicwidget.h;h=a7721d0604aecc48a297d930f0ac3ee7ad4652cd;hp=f054ff5bc4d83e18df5352f5e9c74ac57f06658b;hb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;hpb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f diff --git a/src/qtui/topicwidget.h b/src/qtui/topicwidget.h index f054ff5b..a7721d06 100644 --- a/src/qtui/topicwidget.h +++ b/src/qtui/topicwidget.h @@ -36,15 +36,15 @@ public: void setCustomFont(const QFont &); void setReadOnly(const bool &readonly); - virtual bool eventFilter(QObject *obj, QEvent *event); + bool eventFilter(QObject *obj, QEvent *event) override; inline bool isReadOnly() const { return _readonly; } signals: void switchedPlain(); protected slots: - virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); - virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight); + void currentChanged(const QModelIndex ¤t, const QModelIndex &previous) override; + void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) override; private slots: void on_topicLineEdit_textEntered();