aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml b/tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml
deleted file mode 100644
index 654e09cb2e..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/deletingState.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- id: myRectangle
- width: 100; height: 100
- color: "red"
- StateGroup {
- id: stateGroup
- states: State {
- name: "blue"
- PropertyChanges { target: myRectangle; color: "blue" }
- }
- }
-}