aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2020-11-26 20:16:41 +0200
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2020-11-26 18:54:40 +0000
commit2d05822e27df3daf889e197d438cdfb15b734741 (patch)
tree518863e990896e55b7586f46d733a98c0615493e
parent0f3145862479c770ef40b608dc54fd27923e1572 (diff)
Android: move <b> from displayName to summaryText
In case or error QC will mention the name of the step where the error happened, and it doesn't look right quoted in <b> tags. Change-Id: I4b0b49367daeda845483c0bdbbc036c6d4c90f51 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
-rw-r--r--src/plugins/android/androidbuildapkstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/android/androidbuildapkstep.cpp b/src/plugins/android/androidbuildapkstep.cpp
index 400d2b9bca..38d6841525 100644
--- a/src/plugins/android/androidbuildapkstep.cpp
+++ b/src/plugins/android/androidbuildapkstep.cpp
@@ -490,8 +490,8 @@ AndroidBuildApkStep::AndroidBuildApkStep(BuildStepList *parent, Utils::Id id)
sdkManager()->latestAndroidSdkPlatform()))
{
setImmutable(true);
- setDisplayName("<b>" + tr("Build Android APK") + "</b>");
- setSummaryText(displayName());
+ setDisplayName(tr("Build Android APK"));
+ setSummaryText("<b>" + displayName() + "</b>");
}
bool AndroidBuildApkStep::init()