aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/used.qml
diff options
context:
space:
mode:
authorEvgeniy A. Dushistov <dushistov@mail.ru>2021-04-14 15:51:03 +0300
committerEvgeniy A. Dushistov <dushistov@mail.ru>2021-04-14 18:46:06 +0300
commit06dc505b9490625141e54f992a2e818d5b6a8777 (patch)
tree64f816f00ac55a5b11c412f8ea70e2d14f2e6cca /tests/auto/qml/qmllint/data/used.qml
parente11ff68923d92f13a2b113b760f79d681a4762ad (diff)
add "double" into the list of built in QML types
Also this fixed "property type checking" for qmllint in case of QML code like "property double xyz" Fixes: QTBUG-92566 Change-Id: Ice33be4287ce0eba2cf9dfaabb760406bdca02b7 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/qml/qmllint/data/used.qml')
-rw-r--r--tests/auto/qml/qmllint/data/used.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/used.qml b/tests/auto/qml/qmllint/data/used.qml
index 7a3ec0e574..f5c74b0352 100644
--- a/tests/auto/qml/qmllint/data/used.qml
+++ b/tests/auto/qml/qmllint/data/used.qml
@@ -13,4 +13,5 @@ Item {
required property Something moo
property bool boolVar: false
property real realVar: 17.17
+ property double doubleVar: 18.18
}