aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/AliasPropertyChangeSignalsType.qml
blob: 9265ffb1dffa2e1c76e878e75327a962e6a732df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0

QtObject {
    id: root

    signal sig1
    signal sig2
    signal sig3
    signal sig4

    property alias aliasProperty: root.realProperty

    property int realProperty: 0

    property bool test: false

    Component.onCompleted: {
        root.realProperty = 10;
    }
}