summaryrefslogtreecommitdiff
path: root/src/yuzu/game_list.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-18 00:15:46 -0400
committerLioncash <mathew1800@gmail.com>2018-07-18 00:15:48 -0400
commitf4b98a857b7e4e1b54670d8a86c2937b6030d9cf (patch)
tree6e59f0c3bf65549881a3ab300578c496e1d3928b /src/yuzu/game_list.h
parentc8f3fc9a4b7060d78b8bd2cdaf4b7b0b93cc4d05 (diff)
game_list: Upper-case containsAllWords to ContainsAllWords()
This makes it consistent with most of the other private utility functions.
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 bf8486b54..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(const QString& haystack, const QString& userinput) const;
+ bool ContainsAllWords(const QString& haystack, const QString& userinput) const;
SearchField* search_field;
GMainWindow* main_window = nullptr;