aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/dynamicscene.qml
blob: c38da9f5985cd3d47abb121352c4b617b890a9fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2021 The Qt Company Ltd.

import QtQml

QtObject {
    id: self
    onObjectNameChanged: {
        try {
            Qt.createQmlObject("1", self, 'CustomObject');
        } catch(err) {
        }
    }
}