forked from qt-creator/qt-creator
Utils: Drop Utils::SkipEmptyParts again
We require Qt 5.14 nowadays. Change-Id: Iff245257d3cb19207007c0445ee13814e66152dd Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -51,7 +51,7 @@ static QStringList qt_clean_filter_list(const QString &filter)
|
||||
QString f = filter;
|
||||
if (match.hasMatch())
|
||||
f = match.captured(2);
|
||||
return f.split(QLatin1Char(' '), Utils::SkipEmptyParts);
|
||||
return f.split(QLatin1Char(' '), Qt::SkipEmptyParts);
|
||||
}
|
||||
|
||||
static bool validateLibraryPath(const Utils::FilePath &filePath,
|
||||
|
||||
Reference in New Issue
Block a user