Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativelanguage / data / aliasPropertyChangeSignals.qml
1 import QtQuick 1.0
2
3 QtObject {
4     id: root
5
6     property alias aliasProperty: root.realProperty
7     onAliasPropertyChanged: root.test = true
8
9     property int realProperty: 0
10
11     property bool test: false
12
13     Component.onCompleted: {
14         root.realProperty = 10;
15     }
16 }