summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-01-17 19:51:14 -0500
committerGravatar Lioncash2018-01-17 19:52:15 -0500
commit15318b660144ffd5878c1b9c0a627b7e2a69a23c (patch)
tree99aa37c0e28a2ec6c5f10da4a8b25a517c519dd0 /src
parentMerge pull request #73 from N00byKing/3093 (diff)
downloadyuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.gz
yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.xz
yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.zip
game_list: Amend doxygen parameter identifiers for containsAllWords()
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 679c89828..6d7c409d0 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -137,8 +137,8 @@ GameList::SearchField::SearchField(GameList* parent) : QWidget{parent} {
137 * Checks if all words separated by spaces are contained in another string 137 * Checks if all words separated by spaces are contained in another string
138 * This offers a word order insensitive search function 138 * This offers a word order insensitive search function
139 * 139 *
140 * @param String that gets checked if it contains all words of the userinput string 140 * @param haystack String that gets checked if it contains all words of the userinput string
141 * @param String containing all words getting checked 141 * @param userinput String containing all words getting checked
142 * @return true if the haystack contains all words of userinput 142 * @return true if the haystack contains all words of userinput
143 */ 143 */
144bool GameList::containsAllWords(QString haystack, QString userinput) { 144bool GameList::containsAllWords(QString haystack, QString userinput) {