aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2022-05-24 16:54:52 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2022-05-24 15:00:39 +0000
commit07d9075d478163fa15b24da424d9948d1d46ae05 (patch)
tree2702fbe480059ebb529277c4d67d5388144b50e9
parent5e27a964465015986f72806b664715e8bf31344e (diff)
QmlDesigner: Add QtQuick 6.3 as supported version
Change-Id: Icbb1d2a3c7584cc24f0d8dde467d07678925711c Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp22
1 files changed, 3 insertions, 19 deletions
diff --git a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp
index 6eb2faa02e6..176e0717ff9 100644
--- a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp
+++ b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp
@@ -89,25 +89,9 @@ bool isSupportedAttachedProperties(const QString &propertyName)
QStringList supportedVersionsList()
{
- static const QStringList list = {"2.0",
- "2.1",
- "2.2",
- "2.3",
- "2.4",
- "2.5",
- "2.6",
- "2.7",
- "2.8",
- "2.9",
- "2.10",
- "2.11",
- "2.12",
- "2.13",
- "2.14",
- "2.15",
- "6.0",
- "6.1",
- "6.2"};
+ static const QStringList list = {"2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6",
+ "2.7", "2.8", "2.9", "2.10", "2.11", "2.12", "2.13",
+ "2.14", "2.15", "6.0", "6.1", "6.2", "6.3"};
return list;
}