forked from qt-creator/qt-creator
Krazy fixes (spelling, single char strings, char constants).
This commit is contained in:
@@ -334,7 +334,7 @@ void Parser::Private::parseHeader(QIODevice *device)
|
||||
} else if (line.startsWith("summary: ")) {
|
||||
QString values = getValue(line, 9);
|
||||
uint i = 0;
|
||||
foreach(const QString value, values.split(QLatin1Char(' '), QString::SkipEmptyParts))
|
||||
foreach (const QString &value, values.split(QLatin1Char(' '), QString::SkipEmptyParts))
|
||||
data->setTotalCost(i++, value.toULongLong());
|
||||
} else if (!line.trimmed().isEmpty()) {
|
||||
// handle line and exit parseHeader
|
||||
|
Reference in New Issue
Block a user