aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@qt.io>2017-05-30 15:16:49 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2017-05-31 09:31:16 +0000
commit3c778cfb8361f1afdd81feb4eaed91473ccc1f93 (patch)
treec05e3505a5d1b15876a8ee52a497834e2377ba6d /tests
parent11f5478fd320aff0ca1e31e4784fefed3d88dcb1 (diff)
Update according to new "point" API of single handler
Change-Id: Ia67dd04333a7879362819e1bb2a891c1f92b7069 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quick/pointerhandlers/qquickdraghandler/data/draggables.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/quick/pointerhandlers/qquickdraghandler/data/draggables.qml b/tests/auto/quick/pointerhandlers/qquickdraghandler/data/draggables.qml
index cfacd69858..5ed9bd1523 100644
--- a/tests/auto/quick/pointerhandlers/qquickdraghandler/data/draggables.qml
+++ b/tests/auto/quick/pointerhandlers/qquickdraghandler/data/draggables.qml
@@ -65,7 +65,7 @@ Item {
Text {
color: "white"
anchors.centerIn: parent
- text: dragHandler.pos.x.toFixed(1) + "," + dragHandler.pos.y.toFixed(1)
+ text: dragHandler.point.position.x.toFixed(1) + "," + dragHandler.point.position.y.toFixed(1)
}
}
}