equal
deleted
inserted
replaced
|
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 } |