Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativestates / data / autoStateAtStartupRestoreBug.qml
1 import QtQuick 1.0
2
3 Item {
4     id: root
5     property int input: 1
6     property int test: 9
7
8     states: [
9         State {
10             name: "portrait"
11             when: root.input == 1
12             PropertyChanges {
13                 target: root
14                 test: 3
15             }
16         }
17     ]
18 }