QmlDesigner: Use Qt 6.7 for project storage

Change-Id: Ibf0df9a05dda2c3bbd2a55935e9471ebf40dcf64
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Marco Bubke
2024-07-10 16:17:31 +02:00
parent 7af9acc445
commit 67c7beeffe
3 changed files with 4 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ extend_qtc_library(QmlDesignerCore
)
extend_qtc_library(QmlDesignerCore
CONDITION Qt6_VERSION VERSION_GREATER_EQUAL 6.5.0 AND Qt6_VERSION VERSION_LESS 6.6.0
CONDITION Qt6_VERSION VERSION_GREATER_EQUAL 6.7.0 AND Qt6_VERSION VERSION_LESS 6.8.0
PUBLIC_DEFINES QDS_BUILD_QMLPARSER
)
extend_qtc_library(QmlDesignerCore

View File

@@ -288,7 +288,7 @@ createFunctionAndSignals(const QMultiHash<QString, QQmlJSMetaMethod> &qmlMethods
if (qmlMethod.isJavaScriptFunction())
continue;
if (qmlMethod.methodType() != QQmlJSMetaMethod::Type::Signal) {
if (qmlMethod.methodType() != QQmlJSMetaMethodType::Signal) {
functionsDeclarations.emplace_back(Utils::SmallString{qmlMethod.methodName()},
fullyQualifiedTypeName(qmlMethod.returnTypeName(),
componentNameWithoutNamespace),