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