From ca8f7c56cdad3d6add748dd2cd0311e02942c87b Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 18 Jan 2016 07:14:48 +0100 Subject: [PATCH] Remove bold tag from test summary In some themes this becomes hard to read. Change-Id: If703355c1b76f3120f29c1e3ca1363f502d23865 Reviewed-by: Niels Weber --- plugins/autotest/testresultspane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp index df84ebd1b20..3e2863a7417 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("

Test summary:   %1 %2, %3 %4") + QString labelText = QString::fromLatin1("

Test summary:   %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);