aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-10-22 15:05:10 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-10-22 16:05:39 +0200
commit08d9861b1ad0dfaf83ec0276376472d868e68b94 (patch)
tree895b2c8fa9700e91324bff3f20d1803176bcbec8 /src
parent1270a88cb3fa446ce2201d4204ff05b8b969f2ea (diff)
Fix qdoc warning: document parameters correctly
Change-Id: I04a2376908369df9cef5d1751797db39034668d3 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/imports/testlib/toucheventsequence.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/testlib/toucheventsequence.qdoc b/src/imports/testlib/toucheventsequence.qdoc
index bd3551a669..92c5836d49 100644
--- a/src/imports/testlib/toucheventsequence.qdoc
+++ b/src/imports/testlib/toucheventsequence.qdoc
@@ -57,7 +57,7 @@
/*!
\qmlmethod TouchEventSequence TouchEventSequence::press(int touchId, object item, real x = item.width / 2, real y = item.height / 2)
- Creates a new point identified as \a touchId, at the point indicated by \e x and \e y relative to \a item.
+ Creates a new point identified as \a touchId, at the point indicated by \a x and \a y relative to \a item.
Further use of the same touch point should maintain the same touchId.
Item defaults to the value provided via touchEvent().
@@ -67,7 +67,7 @@
/*!
\qmlmethod TouchEventSequence TouchEventSequence::move(int touchId, object item, real x = item.width / 2, real y = item.height / 2)
- Moves \a touchId to the point indicated by \e x and \e y relative to \a item.
+ Moves \a touchId to the point indicated by \a x and \a y relative to \a item.
Item defaults to the value provided via touchEvent().
X and y default to the midpoint of the item.
@@ -76,7 +76,7 @@
/*!
\qmlmethod TouchEventSequence TouchEventSequence::release(int touchId, object item, real x = item.width / 2, real y = item.height / 2)
- Removes \a touchId at the point indicated by \e x and \e y relative to \a item.
+ Removes \a touchId at the point indicated by \a x and \a y relative to \a item.
Item defaults to the value provided via touchEvent().
X and y default to the midpoint of the item.