forked from qt-creator/qt-creator
Utils: Use override consistently
clang-tidy fixes from modernize-use-override check. Change-Id: I89d27f359b6ee507153cb3712f61f81471ff0858 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
86b368f912
commit
07e67b2188
@@ -46,12 +46,12 @@ class QTCREATOR_UTILS_EXPORT TreeViewComboBox : public QComboBox
|
||||
public:
|
||||
TreeViewComboBox(QWidget *parent = 0);
|
||||
|
||||
void wheelEvent(QWheelEvent *e);
|
||||
void keyPressEvent(QKeyEvent *e);
|
||||
void wheelEvent(QWheelEvent *e) override;
|
||||
void keyPressEvent(QKeyEvent *e) override;
|
||||
void setCurrentIndex(const QModelIndex &index);
|
||||
bool eventFilter(QObject* object, QEvent* event);
|
||||
void showPopup();
|
||||
void hidePopup();
|
||||
bool eventFilter(QObject* object, QEvent* event) override;
|
||||
void showPopup() override;
|
||||
void hidePopup() override;
|
||||
|
||||
TreeViewComboBoxView *view() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user