aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmlprofilerservice/data/signalSourceLocation.qml
blob: 0eff9e903074446537167d7e25e2558056b3c1d7 (plain)
1
2
3
4
5
6
7
8
9
import QtQml 2.0

QtObject {
    property int width: 400
    property int height: 400

    onWidthChanged: console.log(width);
    Component.onCompleted: width = 500;
}