summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-01-17 19:54:06 -0500
committerLioncash <mathew1800@gmail.com>2018-01-17 19:54:06 -0500
commit94a6515b713e1a2c2dd4560d6658ef9a7c651a41 (patch)
tree23060e158f60e790dc81fb4c2d414aa630a8b007 /src
parentee08c39b7251c6a037014b503ecf70ebf8dc5ed5 (diff)
game_list: Add missing override specifier for KeyReleaseEater's eventFilter function
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h
index 4823a1296..7aff597b7 100644
--- a/src/yuzu/game_list.h
+++ b/src/yuzu/game_list.h
@@ -49,7 +49,7 @@ public:
QString edit_filter_text_old;
protected:
- bool eventFilter(QObject* obj, QEvent* event);
+ bool eventFilter(QObject* obj, QEvent* event) override;
};
QHBoxLayout* layout_filter = nullptr;
QTreeView* tree_view = nullptr;