aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml b/tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml
deleted file mode 100644
index ae05b05072..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/parentChange4.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400; height: 400
- Rectangle {
- id: myRect
- objectName: "MyRect"
- x: 5; y: 5
- width: 100; height: 100
- color: "red"
- }
- MouseArea {
- id: clickable
- anchors.fill: parent
- }
-
- Item {
- id: newParent
- transform: Scale { xScale: .5; yScale: .7}
- }
-
- states: State {
- name: "reparented"
- when: clickable.pressed
- ParentChange {
- target: myRect
- parent: newParent
- }
- }
-}