diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 22:44:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 22:44:03 -0500 |
commit | 01b3bf119e559e6dac6f6a2a3eea5bb94a7136dd (patch) | |
tree | ba03d18ca690c1da8ff25095891f18e0b19f313b /src | |
parent | 3ebe56524c6e311eae1befb6ba7b106a5d599162 (diff) | |
parent | 94a6515b713e1a2c2dd4560d6658ef9a7c651a41 (diff) |
Merge pull request #87 from lioncash/override
game_list: Add missing override specifier for KeyReleaseEater's eventFilter function
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/game_list.h | 2 |
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; |