aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml b/tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml
deleted file mode 100644
index b5df922190..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/basicChanges4.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import Qt.test 1.0
-import QtQuick 1.0
-
-MyRectangle {
- id: rect
- width: 100; height: 100
- color: "red"
-
- states: State {
- name: "aBlueDay"
- PropertyChanges {
- target: rect
- onPropertyWithNotifyChanged: { rect.color = "blue"; }
- }
- }
-
- Component.onCompleted: rect.state = "aBlueDay"
-}
-