aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/topLevelComponent.qml
blob: a73e28f642548b4ab79fc324544c97670af643d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pragma Strict
import QtQml

Component {
    QtObject {
        id: root

        function myOpen() {
            root.objectName = "foo"
        }

        Component.onCompleted: myOpen()
    }
}