mirror of
				https://github.com/yuzu-emu/yuzu-mainline.git
				synced 2025-11-04 11:04:50 +00:00 
			
		
		
		
	yuzu/game_list: Use non-deprecated version of QString's split() function
The previous overload of split() was deprecated in 5.14.
This commit is contained in:
		
							parent
							
								
									7432343214
								
							
						
					
					
						commit
						cd4aa50207
					
				| 
						 | 
					@ -161,7 +161,7 @@ GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} {
 | 
				
			||||||
 * @return true if the haystack contains all words of userinput
 | 
					 * @return true if the haystack contains all words of userinput
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
 | 
					static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
 | 
				
			||||||
    const QStringList userinput_split = userinput.split(QLatin1Char{' '}, QString::SkipEmptyParts);
 | 
					    const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return std::all_of(userinput_split.begin(), userinput_split.end(),
 | 
					    return std::all_of(userinput_split.begin(), userinput_split.end(),
 | 
				
			||||||
                       [&haystack](const QString& s) { return haystack.contains(s); });
 | 
					                       [&haystack](const QString& s) { return haystack.contains(s); });
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue