aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2021-09-01 15:03:31 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2021-09-03 13:00:04 +0000
commit4a83e40a4648ca1eaf304cb289ea786e55539df2 (patch)
tree56f61baf31f0543f18628b342e8a8a9d1924e5c0
parent84b973783780156c2d84f2dd24b3de328e3890ea (diff)
Use IDE_DISPLAY_NAMEv5.0.3v5.0.2v5.0.1
Task-number: QDS-4220 Change-Id: Ic555d82c4ca85103d709ebed669a1170e9796032 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
-rw-r--r--src/usagestatisticplugin.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usagestatisticplugin.cpp b/src/usagestatisticplugin.cpp
index daaedac..d2aa70b 100644
--- a/src/usagestatisticplugin.cpp
+++ b/src/usagestatisticplugin.cpp
@@ -25,6 +25,8 @@
#include "usagestatisticplugin.h"
#include "usagestatisticconstants.h"
+#include <app/app_version.h>
+
#include <coreplugin/icore.h>
#include <coreplugin/icontext.h>
#include <coreplugin/actionmanager/actionmanager.h>
@@ -215,7 +217,8 @@ void UsageStatisticPlugin::showFirstTimeMessage()
static ::Utils::InfoBarEntry makeInfoBarEntry()
{
static auto infoText = UsageStatisticPlugin::tr(
- "We make Qt Creator for you. Would you like to help us make it even better?");
+ "We make %1 for you. Would you like to help us make it even better?")
+ .arg(Core::Constants::IDE_DISPLAY_NAME);
static auto customButtonInfoText = UsageStatisticPlugin::tr("Adjust usage statistics settings");
static auto cancelButtonInfoText = UsageStatisticPlugin::tr("Decide later");