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

Item {
    id: screen; width: 50

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

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