From d17e172d924417517c75085f1c2b20d4dedd7670 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Wed, 18 Jul 2018 16:52:12 -0400
Subject: [PATCH] game_list: Make ContainsAllWords an internally linked
 non-member function

This function actually depends on no internal class state, so it doesn't
even need to be a part of the class interface.
---
 src/yuzu/game_list.cpp | 2 +-
 src/yuzu/game_list.h   | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 5f43eb1770..31d9973531 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -138,7 +138,7 @@ GameList::SearchField::SearchField(GameList* parent) : QWidget{parent} {
  * @param userinput String containing all words getting checked
  * @return true if the haystack contains all words of userinput
  */
-bool GameList::ContainsAllWords(const QString& haystack, const QString& userinput) const {
+static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
     const QStringList userinput_split =
         userinput.split(' ', QString::SplitBehavior::SkipEmptyParts);
 
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h
index 14db3956d0..3bc14f07fe 100644
--- a/src/yuzu/game_list.h
+++ b/src/yuzu/game_list.h
@@ -89,7 +89,6 @@ private:
 
     void PopupContextMenu(const QPoint& menu_location);
     void RefreshGameDirectory();
-    bool ContainsAllWords(const QString& haystack, const QString& userinput) const;
 
     SearchField* search_field;
     GMainWindow* main_window = nullptr;