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>
This commit is contained in:
Alessandro Portale
2023-05-10 13:01:34 +02:00
parent aa5ddaf412
commit 07b2a30dfe

View File

@@ -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
}
}