summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-06-23 12:51:15 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-06-24 16:40:45 +0300
commita133256e3704a7ca685d2f8082c69e5bc8bdaee9 (patch)
treeeaba57a1607781f955569f7734966c50792fc46b
parente9b28403273fb2522ecf34164f8f768bbc7c644e (diff)
downloadqt-creator-a133256e3704a7ca685d2f8082c69e5bc8bdaee9.tar.gz
Fix display of benchmark results
The '-' could have been misinterpreted as sign of the value following it. Change-Id: Ia308cca93f81e7fa026485e9cda3fcc433696a35 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
-rw-r--r--plugins/autotest/testresultdelegate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autotest/testresultdelegate.cpp b/plugins/autotest/testresultdelegate.cpp
index c20ce11200..5e37c64955 100644
--- a/plugins/autotest/testresultdelegate.cpp
+++ b/plugins/autotest/testresultdelegate.cpp
@@ -114,7 +114,7 @@ void TestResultDelegate::paint(QPainter *painter, const QStyleOptionViewItem &op
output.append(QString::fromLatin1(" (%1)").arg(testResult.dataTag()));
if (!desc.isEmpty()) {
int breakPos = desc.indexOf(QLatin1Char('('));
- output.append(QLatin1String(" - ")).append(desc.left(breakPos));
+ output.append(QLatin1String(": ")).append(desc.left(breakPos));
if (selected)
output.append(QLatin1Char('\n')).append(desc.mid(breakPos));
}