equal
deleted
inserted
replaced
|
1 import Qt 4.7 |
|
2 import "include_shared.js" as IncludeTest |
|
3 |
|
4 QtObject { |
|
5 property int test0: 0 |
|
6 property bool test1: false |
|
7 property bool test2: false |
|
8 property bool test2_1: false |
|
9 property bool test3: false |
|
10 property bool test3_1: false |
|
11 |
|
12 Component.onCompleted: { |
|
13 IncludeTest.go(); |
|
14 test0 = IncludeTest.value |
|
15 test1 = IncludeTest.test1 |
|
16 test2 = IncludeTest.test2 |
|
17 test2_1 = IncludeTest.test2_1 |
|
18 test3 = IncludeTest.test3 |
|
19 test3_1 = IncludeTest.test3_1 |
|
20 } |
|
21 } |
|
22 |