summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml
blob: 736d5e870d0f6a203df1b8ec7345cf2ce7c33593 (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)

    Connections { target: screen; onTestMe: screen.tested = param2 + param1 }
}