summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2023-05-10 13:01:34 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2023-05-17 14:12:20 +0000
commit07b2a30dfe9a4410e658fb816a9105050a52c429 (patch)
treed6fd592dbd382036481b9c6b0bfe67b39a11303f
parentaa5ddaf4122cc95b7d475fd1ab3d899ef3c0c062 (diff)
downloadqt-creator-07b2a30dfe9a4410e658fb816a9105050a52c429.tar.gz
Qt Quick Application Wizard: Unify Qt version combobox entries
The "compat" variant, which was around for a long time, had a Qt version combobox with entries following the "Qt x.yz" scheme. This change adds the Qt prefix also to the combobox of the new wizard. Fixes: QTCREATORBUG-29126 Change-Id: I4cd59f09248ba487077c2dcdd0828222311dd9a7 Reviewed-by: Robert Löhning <robert.loehning@qt.io>
-rw-r--r--share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json b/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json
index 8b4165fa35..dbfe93bbca 100644
--- a/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json
+++ b/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json
@@ -81,7 +81,11 @@
"type": "ComboBox",
"data":
{
- "items": [ "6.2", "6.4", "6.5" ],
+ "items": [
+ { "trKey": "Qt 6.2", "value": "6.2" },
+ { "trKey": "Qt 6.4", "value": "6.4" },
+ { "trKey": "Qt 6.5", "value": "6.5" }
+ ],
"index": 1
}
}