aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml b/tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml
deleted file mode 100644
index 08d0209615..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/editProperties.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- id: myRectangle
-
- property color sourceColor: "blue"
- width: 400; height: 400
- color: "red"
-
- Rectangle {
- id: rect2
- objectName: "rect2"
- width: parent.width + 2
- height: 200
- color: "yellow"
- }
-
- states: [
- State {
- name: "blue"
- PropertyChanges {
- target: rect2
- width:50
- height: 40
- }
- },
- State {
- name: "green"
- PropertyChanges {
- target: rect2
- width: myRectangle.width / 2
- height: myRectangle.width / 4
- }
- }]
-}