aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/scriptConnect.3.qml
blob: e41b1c1f23df322a2b657ec507bb0550107ef41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt.test 1.0
import QtQuick 2.0

MyQmlObject {
    property bool test: false

    id: root

    function testFunction() {
        test = true;
    }

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