Utils: Drop [Qt::]SkipEmptyParts from porting.h

Not needed anymore after 7c942cfd18.

Change-Id: I5e6021cb64a399fa3bc3067b2fcd60ab48587daa
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2022-03-10 10:20:54 +01:00
parent 17acd5b225
commit 51d00709a5
5 changed files with 11 additions and 17 deletions

View File

@@ -310,7 +310,7 @@ FilePaths Environment::path() const
FilePaths Environment::pathListValue(const QString &varName) const
{
const QStringList pathComponents = expandedValueForKey(varName).split(
OsSpecificAspects::pathListSeparator(m_osType), SkipEmptyParts);
OsSpecificAspects::pathListSeparator(m_osType), Qt::SkipEmptyParts);
return transform(pathComponents, &FilePath::fromUserInput);
}