aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/singlePointHandlerProperties.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pointer/singlePointHandlerProperties.qml')
-rw-r--r--tests/manual/pointer/singlePointHandlerProperties.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/pointer/singlePointHandlerProperties.qml b/tests/manual/pointer/singlePointHandlerProperties.qml
index c2500770f0..9bebf23810 100644
--- a/tests/manual/pointer/singlePointHandlerProperties.qml
+++ b/tests/manual/pointer/singlePointHandlerProperties.qml
@@ -140,7 +140,7 @@ Rectangle {
id: pointHandler
target: null
acceptedButtons: Qt.AllButtons
- onGrabChanged: if (active) { // 'point' is an implicit parameter referencing to a QQuickEventPoint instance
+ onGrabChanged: if (active) { // 'point' is an implicit parameter referencing to a QEventPoint instance
console.log("grabbed " + point.pointId + " @ " + point.sceneGrabPos)
grabbingLocationIndicator.createObject(root, {"x": point.sceneGrabPosition.x, "y": point.sceneGrabPosition.y - 16})
}