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:
@@ -376,7 +376,7 @@ QStringList MakefileParser::targetValues(bool *hasVariables)
|
||||
// Get all values of a line separated by spaces.
|
||||
// Values representing a variable like $(value) get
|
||||
// removed currently.
|
||||
QStringList lineValues = m_line.split(QLatin1Char(' '), Utils::SkipEmptyParts);
|
||||
QStringList lineValues = m_line.split(QLatin1Char(' '), Qt::SkipEmptyParts);
|
||||
QStringList::iterator it = lineValues.begin();
|
||||
while (it != lineValues.end()) {
|
||||
if ((*it).startsWith(QLatin1String("$("))) {
|
||||
|
||||
Reference in New Issue
Block a user