aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/explicit.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/explicit.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/explicit.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/explicit.qml b/tests/auto/qtquick1/qdeclarativestates/data/explicit.qml
deleted file mode 100644
index 426731914f..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/explicit.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- id: myRectangle
- property color sourceColor: "blue"
- width: 100; height: 100
- color: "red"
- states: State {
- name: "blue"
- PropertyChanges {
- objectName: "changes"
- target: myRectangle; explicit: true
- color: sourceColor
- }
- }
-}