diff options
author | Lioncash <mathew1800@gmail.com> | 2018-01-18 01:51:14 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-01-18 01:52:15 +0100 |
commit | 15318b660144ffd5878c1b9c0a627b7e2a69a23c (patch) | |
tree | 99aa37c0e28a2ec6c5f10da4a8b25a517c519dd0 | |
parent | Merge pull request #73 from N00byKing/3093 (diff) | |
download | yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.gz yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.bz2 yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.lz yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.xz yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.tar.zst yuzu-15318b660144ffd5878c1b9c0a627b7e2a69a23c.zip |
-rw-r--r-- | src/yuzu/game_list.cpp | 4 |
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} { * Checks if all words separated by spaces are contained in another string * This offers a word order insensitive search function * - * @param String that gets checked if it contains all words of the userinput string - * @param String containing all words getting checked + * @param haystack String that gets checked if it contains all words of the userinput string + * @param userinput String containing all words getting checked * @return true if the haystack contains all words of userinput */ bool GameList::containsAllWords(QString haystack, QString userinput) { |