qt6-bb10/qtdeclarative/tests/auto/qml/debugger/qqmlprofilerservice/data/signalSourceLocation.qml

10 lines
169 B
QML

import QtQml 2.0
QtObject {
property int width: 400
property int height: 400
onWidthChanged: console.log(width);
Component.onCompleted: width = 500;
}