aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml
blob: 00507d919c34ae5457f697a5f7592a8aed735fc3 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0

Item {
    id: screen; width: 50

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

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