aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconnections/data/override-proxy-type.qml
blob: 80e459966b52c260a928648fb09b0164476ed2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml 2.12
import test.proxy 1.0

Proxy {
    property int testEnum: 0;
    id: proxy
    property Connections connections: Connections {
        target: proxy
        onSomeSignal: testEnum = Proxy.EnumValue;
    }

    Component.onCompleted: someSignal()
}