summaryrefslogtreecommitdiff
path: root/src/plugins/android/androiddevice.cpp
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-25 12:56:52 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-25 10:31:18 +0000
commitf4db436a7b0aeff054e3c8ba939a42a054efd5a2 (patch)
treef73d0fa0716011ca6b093e74a9e536c11adce7d2 /src/plugins/android/androiddevice.cpp
parent43f759a6b0e1e8311d43a750c46b8257d62a9b5e (diff)
downloadqt-creator-f4db436a7b0aeff054e3c8ba939a42a054efd5a2.tar.gz
Android: remove Virtual from the AndroidDeviceFactory
Keep it only Android Device since this title is used in many places around Qt Creator in different contexts it is better to make it "Android Device" to not give any unintentional hint that only virtual devices are covered. Such cases are the project creation wizard and the kit target device settings. Task-number: QTCREATORBUG-26477 Change-Id: I8c7224243aec6b8f5b5bf95db8d23b9aecbafca6 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r--src/plugins/android/androiddevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp
index a5674313ee..de8a89e7f7 100644
--- a/src/plugins/android/androiddevice.cpp
+++ b/src/plugins/android/androiddevice.cpp
@@ -646,7 +646,7 @@ AndroidDeviceFactory::AndroidDeviceFactory()
: ProjectExplorer::IDeviceFactory(Constants::ANDROID_DEVICE_TYPE),
m_androidConfig(AndroidConfigurations::currentConfig())
{
- setDisplayName(AndroidDevice::tr("Android Virtual Device"));
+ setDisplayName(AndroidDevice::tr("Android Device"));
setCombinedIcon(":/android/images/androiddevicesmall.png",
":/android/images/androiddevice.png");
setConstructionFunction(&AndroidDevice::create);