From 2d05822e27df3daf889e197d438cdfb15b734741 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Thu, 26 Nov 2020 20:16:41 +0200 Subject: [PATCH] Android: move 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 tags. Change-Id: I4b0b49367daeda845483c0bdbbc036c6d4c90f51 Reviewed-by: Alessandro Portale --- src/plugins/android/androidbuildapkstep.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/android/androidbuildapkstep.cpp b/src/plugins/android/androidbuildapkstep.cpp index 400d2b9bca4..38d68415251 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("" + tr("Build Android APK") + ""); - setSummaryText(displayName()); + setDisplayName(tr("Build Android APK")); + setSummaryText("" + displayName() + ""); } bool AndroidBuildApkStep::init()