summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlconnection/data/trimming.qml
blob: c27dc4697346c55af698d630c4b4e686df8495b3 (plain)
1
2
3
4
5
6
7
8
9
10
import Qt 4.6

Item {
    id: screen; width: 50

    property string tested
    signal testMe(int param1, string param2)

    Connection { sender: screen; signal: "testMe(param1, param2)"; script: screen.tested = param2 + param1 }
}