aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2016-01-18 07:14:48 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2016-01-19 11:53:56 +0000
commitca8f7c56cdad3d6add748dd2cd0311e02942c87b (patch)
treed0eb1db8f19219d9092b2fd44fa83b2044ab47ba
parentdc4e955126af880788ebf545ba1df9f66e745195 (diff)
Remove bold tag from test summary
In some themes this becomes hard to read. Change-Id: If703355c1b76f3120f29c1e3ca1363f502d23865 Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
-rw-r--r--plugins/autotest/testresultspane.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp
index df84ebd1b2..3e2863a741 100644
--- a/plugins/autotest/testresultspane.cpp
+++ b/plugins/autotest/testresultspane.cpp
@@ -426,7 +426,7 @@ void TestResultsPane::initializeFilterMenu()
void TestResultsPane::updateSummaryLabel()
{
- QString labelText = QString::fromLatin1("<p><b>Test summary:</b>&nbsp;&nbsp; %1 %2, %3 %4")
+ QString labelText = QString::fromLatin1("<p>Test summary:&nbsp;&nbsp; %1 %2, %3 %4")
.arg(QString::number(m_model->resultTypeCount(Result::Pass)), tr("passes"),
QString::number(m_model->resultTypeCount(Result::Fail)), tr("fails"));
int count = m_model->resultTypeCount(Result::UnexpectedPass);