diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-01 11:45:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 11:45:25 -0500 |
commit | f56226e17f4cf4f73201e8162bc8bdefc6468451 (patch) | |
tree | a20b71a8de4df1f7c0033331a112e9fe9c916104 /src | |
parent | 2ce0410f2cb147f0eb0e6a79d736abade3bca4b2 (diff) | |
parent | cd4aa5020789a3d554e1866a673c319a8b335a30 (diff) |
Merge pull request #7828 from lioncash/dep
yuzu/game_list: Use non-deprecated version of QString's split() function
Diffstat (limited to 'src')
-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); }); |