astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2018-04-13 19:57:48 +02:00
parent c4c678383e
commit fb803789fd
1 changed files with 7 additions and 7 deletions

View File

@ -859,13 +859,13 @@ void ResultsTree::copy()
continue;
QString inconclusive = data["inconclusive"].toBool() ? ",inconclusive" : "";
text += '[' + data["file"].toString() + ':' + QString::number(data["line"].toInt())
+ "] ("
+ QString::fromStdString(Severity::toString(ShowTypes::ShowTypeToSeverity((ShowTypes::ShowType)data["severity"].toInt()))) + inconclusive
+ ") "
+ data["message"].toString()
+ " ["
+ data["id"].toString()
+ "]\n";
+ "] ("
+ QString::fromStdString(Severity::toString(ShowTypes::ShowTypeToSeverity((ShowTypes::ShowType)data["severity"].toInt()))) + inconclusive
+ ") "
+ data["message"].toString()
+ " ["
+ data["id"].toString()
+ "]\n";
}
QClipboard *clipboard = QApplication::clipboard();