equal
deleted
inserted
replaced
|
1 import Qt.test 1.0 |
|
2 import Qt 4.7 |
|
3 |
|
4 MyQmlObject { |
|
5 property bool test: false |
|
6 |
|
7 id: root |
|
8 |
|
9 function testFunction() { |
|
10 test = true; |
|
11 } |
|
12 |
|
13 Component.onCompleted: root.argumentSignal.connect(testFunction); |
|
14 } |
|
15 |