summaryrefslogtreecommitdiff
path: root/src/qmlcompiler
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2022-08-30 16:33:48 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2022-08-31 13:09:32 +0200
commit58e751de88989dd483b784c0983da5b13652bdbc (patch)
tree4ffe1a02d25bdc337491f81b2c63179bf6a8703f /src/qmlcompiler
parentaf6c5acc90575e9c56e11321b375c8fc98581024 (diff)
downloadqtdeclarative-58e751de88989dd483b784c0983da5b13652bdbc.tar.gz
Disable qmllint's deferred property check
This mirrors 9d22088d93440e38765b5891b5f2af15414476e1, which removed the warning from the engine. Pick-to: 6.4 Task-number: QTBUG-106069 Change-Id: Ib714bfbd251dcf30becd920c85ac65aceab43707 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qmlcompiler')
-rw-r--r--src/qmlcompiler/qqmljslogger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmlcompiler/qqmljslogger.cpp b/src/qmlcompiler/qqmljslogger.cpp
index c18df84858..3c4161a9de 100644
--- a/src/qmlcompiler/qqmljslogger.cpp
+++ b/src/qmlcompiler/qqmljslogger.cpp
@@ -119,7 +119,7 @@ const QList<QQmlJSLogger::Category> &QQmlJSLogger::defaultCategories()
qmlDeferredPropertyId.name().toString(), QStringLiteral("DeferredPropertyId"),
QStringLiteral(
"Warn about making deferred properties immediate by giving them an id."),
- QtWarningMsg },
+ QtInfoMsg, true, true },
QQmlJSLogger::Category {
qmlUnqualified.name().toString(), QStringLiteral("UnqualifiedAccess"),
QStringLiteral("Warn about unqualified identifiers and how to fix them"),