summaryrefslogtreecommitdiff
path: root/src/yuzu/game_list.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-18 10:02:58 -0700
committerGitHub <noreply@github.com>2018-07-18 10:02:58 -0700
commit3d1e8f750cb7ca4f06a04ed4b1dca61d11b94197 (patch)
treeba934f01c57347df7d8178eb3a55f171ef274011 /src/yuzu/game_list.h
parente3da9fc3677087a267f489ea69bcdd312dd876fe (diff)
parentf4b98a857b7e4e1b54670d8a86c2937b6030d9cf (diff)
Merge pull request #681 from lioncash/const
game_list: Make containsAllWords a const member function
Diffstat (limited to 'src/yuzu/game_list.h')
-rw-r--r--src/yuzu/game_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.h b/src/yuzu/game_list.h
index 7aff597b7..14db3956d 100644
--- a/src/yuzu/game_list.h
+++ b/src/yuzu/game_list.h
@@ -89,7 +89,7 @@ private:
void PopupContextMenu(const QPoint& menu_location);
void RefreshGameDirectory();
- bool containsAllWords(QString haystack, QString userinput);
+ bool ContainsAllWords(const QString& haystack, const QString& userinput) const;
SearchField* search_field;
GMainWindow* main_window = nullptr;