diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-09-29 02:16:47 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-09-29 02:16:47 (GMT) |
commit | 1160a58ad6cb37b3fe68490321a442d4d8b58b95 (patch) | |
tree | dec47c62d24be870c4d6d1a86340e5cf591a821c /tests/auto/declarative/qdeclarativeitem/data | |
parent | 6f35701275ab0cd80daec45b3407725b10571693 (diff) | |
parent | 190ff44b6491a63a857c583d5d8bfbf7b3d0eb68 (diff) | |
download | Qt-1160a58ad6cb37b3fe68490321a442d4d8b58b95.zip Qt-1160a58ad6cb37b3fe68490321a442d4d8b58b95.tar.gz Qt-1160a58ad6cb37b3fe68490321a442d4d8b58b95.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'tests/auto/declarative/qdeclarativeitem/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativeitem/data/transformCrash.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeitem/data/transformCrash.qml b/tests/auto/declarative/qdeclarativeitem/data/transformCrash.qml new file mode 100644 index 0000000..ab7fa84 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeitem/data/transformCrash.qml @@ -0,0 +1,13 @@ +import Qt 4.7 + +Item { + id: wrapper + width: 200 + height: 200 + + QtObject { + id: object + } + + Component.onCompleted: wrapper.transform = object +} |