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

Rectangle {
    width: 400
    height: 400

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