aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml b/tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml
deleted file mode 100644
index 2cad0504b2..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/attachedPropertyChanges.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import Qt.test 1.0
-import QtQuick 1.0
-
-Item {
- id: item
- width: 100; height: 100
- MyRectangle.foo: 0
-
- states: State {
- name: "foo1"
- PropertyChanges {
- target: item
- MyRectangle.foo: 1
- width: 50
- }
- }
-
- Component.onCompleted: item.state = "foo1"
-}
-