diff options
author | Lioncash <mathew1800@gmail.com> | 2022-02-01 17:41:01 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-02-01 17:41:31 +0100 |
commit | cd4aa5020789a3d554e1866a673c319a8b335a30 (patch) | |
tree | 1bf2ef048acd8431c38e7eeacafbbcea2fcb3812 | |
parent | Merge pull request #7825 from lioncash/nodisc2 (diff) | |
download | yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar.gz yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar.bz2 yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar.lz yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar.xz yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.tar.zst yuzu-cd4aa5020789a3d554e1866a673c319a8b335a30.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/game_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp index 8b5c4a10a..e3661b390 100644 --- a/src/yuzu/game_list.cpp +++ b/src/yuzu/game_list.cpp @@ -161,7 +161,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{' '}, QString::SkipEmptyParts); + const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts); return std::all_of(userinput_split.begin(), userinput_split.end(), [&haystack](const QString& s) { return haystack.contains(s); }); |