aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlpropertycache/data/passQGadget.qml
blob: 86fdd920ed925bcc5868de7971e537406fc67a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQml 2.2

QtObject {
    property var result;

    property Connections connections: Connections {
        target: emitter
        onEmitGadget: function(gadget) {
            result = gadget.someProperty;
        }
    }
}