summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/dynamicSignalsAndSlots.qml
blob: 9aa5e86c4d1655f8f9bd2e8c57f23bf32f295241 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.7
QtObject {
    signal signal1
    function slot1() {}
    signal signal2
    function slot2() {}

    property int test: 0
    function slot3(a) { console.log(1921); test = a; }
}