diff options
| author | 2018-01-17 22:20:50 -0500 | |
|---|---|---|
| committer | 2018-01-17 22:20:50 -0500 | |
| commit | 5d38bb36c3d363812e217b0eb2460c0fa93434a7 (patch) | |
| tree | 093cd85b5977745d4224a93d84f65609706ec37c /src | |
| parent | Merge pull request #85 from lioncash/warn (diff) | |
| parent | game_list: Amend doxygen parameter identifiers for containsAllWords() (diff) | |
| download | yuzu-5d38bb36c3d363812e217b0eb2460c0fa93434a7.tar.gz yuzu-5d38bb36c3d363812e217b0eb2460c0fa93434a7.tar.xz yuzu-5d38bb36c3d363812e217b0eb2460c0fa93434a7.zip | |
Merge pull request #86 from lioncash/doxygen
game_list: Amend doxygen parameter identifiers
Diffstat (limited to 'src')
| -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} { | |||
| 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 | */ |
| 144 | bool GameList::containsAllWords(QString haystack, QString userinput) { | 144 | bool GameList::containsAllWords(QString haystack, QString userinput) { |