aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/typeWrapperToVariant.qml
blob: 8a1535ff50a3c3edf81566236ea0a3748ade8c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQml 2.0

QtObject {
    id: root

    property QtObject target: QtObject {
        Component.onCompleted: {
            root.connections.target = root.target.Component
        }
    }

    property Connections connections: Connections {
        ignoreUnknownSignals: true
    }
}