equal
deleted
inserted
replaced
|
1 import Test 1.0 |
|
2 import Qt 4.7 |
|
3 |
|
4 MyTypeObject { |
|
5 // We set a and b to ensure that onCompleted is executed after bindings and |
|
6 // constants have been assigned |
|
7 property int a: Math.min(6, 7) |
|
8 Component.onCompleted: console.log("Completed " + a + " " + nestedObject.b) |
|
9 |
|
10 objectProperty: OnCompletedType { |
|
11 qmlobjectProperty: MyQmlObject { |
|
12 id: nestedObject |
|
13 property int b: 10 |
|
14 Component.onCompleted: console.log("Completed " + a + " " + nestedObject.b) |
|
15 } |
|
16 } |
|
17 } |