diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2010-03-18 16:47:13 +0100 |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2010-03-18 16:56:47 +0100 |
commit | 7d423d5f96e7e65ccfe4359094dc5c4a7e1e5de5 (patch) | |
tree | a119e8be759e68ae6e883d5fdc6b15c2c2bdafe3 /tests/manual/qml/testfiles/flipable.qml | |
parent | 0cb8416502c81d309d10f7f29a8a77118a0bce6e (diff) | |
download | qt-creator-7d423d5f96e7e65ccfe4359094dc5c4a7e1e5de5.tar.gz |
QmlDesigner: Fix crash in property editor when parent of an item is invalid
Happened for
import Qt 4.6
Flipable {
Rectangle {}
}
Diffstat (limited to 'tests/manual/qml/testfiles/flipable.qml')
-rw-r--r-- | tests/manual/qml/testfiles/flipable.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/manual/qml/testfiles/flipable.qml b/tests/manual/qml/testfiles/flipable.qml new file mode 100644 index 0000000000..16af9d7827 --- /dev/null +++ b/tests/manual/qml/testfiles/flipable.qml @@ -0,0 +1,6 @@ +import Qt 4.6 + +Rectangle { + width: 640 + height: 480 +} |