summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 22:20:50 -0500
committerGitHub <noreply@github.com>2018-01-17 22:20:50 -0500
commit5d38bb36c3d363812e217b0eb2460c0fa93434a7 (patch)
tree093cd85b5977745d4224a93d84f65609706ec37c
parent36dc44fb222c8221699d9087803625fe1736180a (diff)
parent15318b660144ffd5878c1b9c0a627b7e2a69a23c (diff)
Merge pull request #86 from lioncash/doxygen
game_list: Amend doxygen parameter identifiers
-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} {
* 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) {