diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-03-18 23:50:52 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-03-21 23:04:58 (GMT) |
commit | 44b1fc2051df2bfd784ce847ee430edad68e3dbd (patch) | |
tree | 86dd7abd1fb0d3aedb6e2caa242167d00b3203de /tests/auto/declarative/qdeclarativeflipable/data | |
parent | 83f6232cadb5bfeeeec170bb17224c4032031dd7 (diff) | |
download | Qt-44b1fc2051df2bfd784ce847ee430edad68e3dbd.zip Qt-44b1fc2051df2bfd784ce847ee430edad68e3dbd.tar.gz Qt-44b1fc2051df2bfd784ce847ee430edad68e3dbd.tar.bz2 |
Fix Flipable crash.
Task-number: QTBUG-9161
Diffstat (limited to 'tests/auto/declarative/qdeclarativeflipable/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflipable/data/crash.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeflipable/data/crash.qml b/tests/auto/declarative/qdeclarativeflipable/data/crash.qml new file mode 100644 index 0000000..ad40bf0 --- /dev/null +++ b/tests/auto/declarative/qdeclarativeflipable/data/crash.qml @@ -0,0 +1,9 @@ +import Qt 4.6 + +Flipable { + transform: Rotation { + axis.y: 1 + axis.z: 0 + angle: 180 + } +} |