diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 06:31:06 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-04 06:32:39 (GMT) |
commit | c329db551237906cc659f3276c679d0e573edff2 (patch) | |
tree | d15cc1bab456de9b02e973da1cc81610fd17432a /tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml | |
parent | 49e7e1dccf38a8cf1aad88de037e590f7918b7ea (diff) | |
download | Qt-c329db551237906cc659f3276c679d0e573edff2.zip Qt-c329db551237906cc659f3276c679d0e573edff2.tar.gz Qt-c329db551237906cc659f3276c679d0e573edff2.tar.bz2 |
Fix grammar stringifying "on" as "readonly"
QTBUG-8676
Diffstat (limited to 'tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml new file mode 100644 index 0000000..7cd6a83 --- /dev/null +++ b/tests/auto/declarative/qdeclarativelanguage/data/customOnProperty.qml @@ -0,0 +1,7 @@ +import Qt 4.6 + +QtObject { + property int on + + Component.onCompleted: on = 10 +} |