aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/core/qqmlsettings/data/siblings.qml
blob: f26312ec6732468cf14b8a1dfa3c0aec6de49e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQml
import QtCore
import QtQuick

Item {
    id: root

    Item {
        id: sibling1
        property string prop1: "value1"
    }

    Settings {
        property alias alias1: sibling1.prop1
        property alias alias2: sibling2.prop2
    }

    Item {
        id: sibling2
        property string prop2: "value2"
    }
}