From 245a3bd067045e37d99e025626c74af93032ca39 Mon Sep 17 00:00:00 2001
From: FearlessTobi <thm.frey@gmail.com>
Date: Sun, 25 Mar 2018 23:57:25 +0200
Subject: [PATCH] game_list: Add missing override specifier for
 KeyReleaseEater's eventFilter function

---
 src/citra_qt/game_list.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/citra_qt/game_list.h b/src/citra_qt/game_list.h
index 2e671454b..74773d3d9 100644
--- a/src/citra_qt/game_list.h
+++ b/src/citra_qt/game_list.h
@@ -51,7 +51,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;