aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/aliasPropertyChangeSignals.qml
blob: 4e11b9174a87ba136ba48d18978e2426ba64eeb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.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;
    }
}