aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/bindings/trimming.qml
blob: 4c37eb22affdbe493fc96ee2ba2ef499779affce (plain)
1
2
3
4
5
6
7
8
9
10
import QtQml 2.0

QtObject {
    id: root

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

    property Connections c: Connections { target: root; onTestMe: root.tested = param2 + param1 }
}