tests/auto/declarative/qdeclarativestates/data/autoStateAtStartupRestoreBug.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     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 }