aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shapes/content/interactive.qml
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-02-12 08:53:00 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-02-12 16:18:28 +0000
commit8784a2778063cf928b27a908f6580ed37cb4035d (patch)
tree5a0871bc6fdd795d7971bc43c3811ee467d4ff38 /examples/quick/shapes/content/interactive.qml
parent0e92e0bd6e7209ad491472b3928840ad78c5371a (diff)
Use functions as signal handlers when accessing parameters
Injected signal handlers are bad practice because they aren't declared. Task-number: QTBUG-89943 Change-Id: I3a691f68342a199bd63034637aa7ed438e3a037b Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 4cc91a6a0e4f9063233a4d6554ae64855cf99c14) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'examples/quick/shapes/content/interactive.qml')
-rw-r--r--examples/quick/shapes/content/interactive.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quick/shapes/content/interactive.qml b/examples/quick/shapes/content/interactive.qml
index 78413db3f9..1f7aad3ab0 100644
--- a/examples/quick/shapes/content/interactive.qml
+++ b/examples/quick/shapes/content/interactive.qml
@@ -190,7 +190,7 @@ Rectangle {
onExited: color = rr.color
onPressed: a = true
onReleased: a = false
- onPositionChanged: {
+ onPositionChanged: (mouse)=> {
if (a) {
var pt = mapToItem(rr.parent, mouse.x, mouse.y);
rr.obj[rr.xprop] = pt.x
@@ -323,10 +323,10 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onPressed: {
+ onPressed: (mouse)=> {
canvas.funcs[root.mode].start(mouse.x, mouse.y);
}
- onPositionChanged: {
+ onPositionChanged: (mouse)=> {
canvas.funcs[root.mode].move(mouse.x, mouse.y);
}
onReleased: {