aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/SubObject.qml
blob: 4658edd1db19268de04477a5aa8dc412d477f27c (plain)
1
2
3
4
5
6
7
8
import QtQml 2.0
QtObject {
    property int testValue: -1
    property int subValue;
    onSubValueChanged: {
        testValue = this.someExpression
    }
}