summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-01-17 19:54:06 -0500
committerGravatar Lioncash2018-01-17 19:54:06 -0500
commit94a6515b713e1a2c2dd4560d6658ef9a7c651a41 (patch)
tree23060e158f60e790dc81fb4c2d414aa630a8b007 /src
parentMerge pull request #73 from N00byKing/3093 (diff)
downloadyuzu-94a6515b713e1a2c2dd4560d6658ef9a7c651a41.tar.gz
yuzu-94a6515b713e1a2c2dd4560d6658ef9a7c651a41.tar.xz
yuzu-94a6515b713e1a2c2dd4560d6658ef9a7c651a41.zip
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:
49 QString edit_filter_text_old; 49 QString edit_filter_text_old;
50 50
51 protected: 51 protected:
52 bool eventFilter(QObject* obj, QEvent* event); 52 bool eventFilter(QObject* obj, QEvent* event) override;
53 }; 53 };
54 QHBoxLayout* layout_filter = nullptr; 54 QHBoxLayout* layout_filter = nullptr;
55 QTreeView* tree_view = nullptr; 55 QTreeView* tree_view = nullptr;