aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/treeviewcombobox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/treeviewcombobox.h')
-rw-r--r--src/libs/utils/treeviewcombobox.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/utils/treeviewcombobox.h b/src/libs/utils/treeviewcombobox.h
index e32d64d4ae..9377c1ff0c 100644
--- a/src/libs/utils/treeviewcombobox.h
+++ b/src/libs/utils/treeviewcombobox.h
@@ -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;