aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/AliasPropertyChangeSignalsType.qml
blob: 0bc202541486bcc41e50f0426d925dbb33e34ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 1.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;
    }
}