summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml
blob: 40d8079ba2b550d14f38dad9d4a2579b60f56fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt.test 1.0
import Qt 4.7

MyQmlObject { 
    property bool test: false

    id: root
    
    function testFunction() {
        test = true;
    }

    Component.onCompleted: root.argumentSignal.connect(testFunction);
}