aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml b/tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml
deleted file mode 100644
index ccd126f6a7..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root
- property int input: 1
- property int test: 9
-
- states: [
- State {
- name: "portrait"
- when: root.input == 1
- PropertyChanges {
- target: root
- test: 3
- }
- }
- ]
-}