aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativelanguage/data/aliasPropertyChangeSignals.qml
blob: 7944deb44ceda0c4e0c48a7ff1e3c7f4f8d3060c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 1.0

QtObject {
    id: root

    property alias aliasProperty: root.realProperty
    onAliasPropertyChanged: root.test = true

    property int realProperty: 0

    property bool test: false

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