summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2022-06-02 09:56:41 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2022-06-04 20:55:31 +0200
commitfa260888d9c9a59acd6e35aa472ca53990ce6635 (patch)
treec32fc33b67b30726d4fb7af1f4bb64f08f647e4a /tests
parentb22c25527711312830465b7d5bf56af0cc18d704 (diff)
Rename QQuickPdfSelection fromPoint/toPoint properties to from and to
It was a suggestion during API review. Change-Id: I54425bbebb90b05a2cee1cb00d51c4d61edb8784 Reviewed-by: Doris Verria <doris.verria@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/quick/pdf/withdoc.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/quick/pdf/withdoc.qml b/tests/manual/quick/pdf/withdoc.qml
index 58fc2ef13..9766adeaa 100644
--- a/tests/manual/quick/pdf/withdoc.qml
+++ b/tests/manual/quick/pdf/withdoc.qml
@@ -97,8 +97,8 @@ Window {
id: selection
document: doc
page: image.currentFrame
- fromPoint: dragHandler.centroid.pressPosition
- toPoint: dragHandler.centroid.position
+ from: dragHandler.centroid.pressPosition
+ to: dragHandler.centroid.position
hold: !dragHandler.active
}