diff options
| author | 2018-01-17 19:54:06 -0500 | |
|---|---|---|
| committer | 2018-01-17 19:54:06 -0500 | |
| commit | 94a6515b713e1a2c2dd4560d6658ef9a7c651a41 (patch) | |
| tree | 23060e158f60e790dc81fb4c2d414aa630a8b007 /src | |
| parent | Merge pull request #73 from N00byKing/3093 (diff) | |
| download | yuzu-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.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: | |||
| 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; |