aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml b/tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml
deleted file mode 100644
index 4425b4dd49..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/unnamedWhen.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: theRect
- property bool triggerState: false
- property string stateString: ""
- states: State {
- when: triggerState
- PropertyChanges {
- target: theRect
- stateString: "inState"
- }
- }
-}