aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/registersingletontype.qml
blob: 31ca7fe4d49245074a076bf018ad275aeedae38f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQuick 2.0
import Singletons 1.0

Item {
    Component.onCompleted: {
        SingletonQObjectCallback.data += SingletonQObjectNoCallback.data
            + SingletonQJSValue.data
            + SingletonInstance.data
            + DecoratedSingletonQObject.data + DecoratedSingletonWithCreate.data;
    }
}