summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-10-14 06:08:57 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:31 +0100
commitca1db6311631df4945a223c556dba1b9db5b5484 (patch)
treebcfeb7f10827068c070223a5d98267dae5cc8bd2
parentvk_texture_cache: Use 3D to scale images when blit is unsupported (diff)
downloadyuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.gz
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.bz2
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.lz
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.xz
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.zst
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.zip
-rw-r--r--src/yuzu/game_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 6bd0f9ee9..2af95dbe5 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -159,7 +159,7 @@ GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} {
* @return true if the haystack contains all words of userinput
*/
static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
- const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts);
+ const QStringList userinput_split = userinput.split(QLatin1Char{' '}, QString::SkipEmptyParts);
return std::all_of(userinput_split.begin(), userinput_split.end(),
[&haystack](const QString& s) { return haystack.contains(s); });