Browse Source

game_list: Add missing override specifier for KeyReleaseEater's eventFilter function

Lioncash 8 years ago
parent
commit
94a6515b71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/yuzu/game_list.h

+ 1 - 1
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;