diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 06:04:15 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 06:04:59 (GMT) |
commit | 57d68b06c15f8426c25e357f97b9154056969e0f (patch) | |
tree | cdd224b86ea9bbead3f92563aadae34285885db6 /tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml | |
parent | 5599ddd113fe1385e7a6aff708e12af419b8de87 (diff) | |
download | Qt-57d68b06c15f8426c25e357f97b9154056969e0f.zip Qt-57d68b06c15f8426c25e357f97b9154056969e0f.tar.gz Qt-57d68b06c15f8426c25e357f97b9154056969e0f.tar.bz2 |
Improve grouped property error messages
QT-2579
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml new file mode 100644 index 0000000..56fca9b --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/invalidGroupedProperty.8.qml @@ -0,0 +1,6 @@ +import Test 1.0 + +MyTypeObject { + pointProperty: "10x10" + pointProperty.x: 10 +} |