aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickmultipointtoucharea.cpp
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2020-02-12 11:07:48 +0100
committerTopi Reinio <topi.reinio@qt.io>2020-03-10 09:36:07 +0100
commit4034eea1ecd1b405363033567f70e62791705c0d (patch)
treeeedbc04c56315c558778a01364dc065a7c23d8b5 /src/quick/items/qquickmultipointtoucharea.cpp
parent508a8baf850dbad59fc0578356d1a9327f27e911 (diff)
Remove hard-coded notes for 'Corresponding handler' for QML signals
QDoc will generate these notes automatically. Task-number: QTBUG-37355 Change-Id: I8ed058ecbbcc630ad0351f6ce167c3fa61936f6f Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/quick/items/qquickmultipointtoucharea.cpp')
-rw-r--r--src/quick/items/qquickmultipointtoucharea.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/quick/items/qquickmultipointtoucharea.cpp b/src/quick/items/qquickmultipointtoucharea.cpp
index 3a807d3c66..a854d97f7e 100644
--- a/src/quick/items/qquickmultipointtoucharea.cpp
+++ b/src/quick/items/qquickmultipointtoucharea.cpp
@@ -363,24 +363,18 @@ void QQuickTouchPoint::setUniqueId(const QPointingDeviceUniqueId &id)
If minimumTouchPoints is set to a value greater than one, this signal will not be emitted until the minimum number
of required touch points has been reached.
-
- The corresponding handler is \c onPressed.
*/
/*!
\qmlsignal QtQuick::MultiPointTouchArea::updated(list<TouchPoint> touchPoints)
This signal is emitted when existing touch points are updated. \a touchPoints is a list of these updated points.
-
- The corresponding handler is \c onUpdated.
*/
/*!
\qmlsignal QtQuick::MultiPointTouchArea::released(list<TouchPoint> touchPoints)
This signal is emitted when existing touch points are removed. \a touchPoints is a list of these removed points.
-
- The corresponding handler is \c onReleased.
*/
/*!
@@ -396,8 +390,6 @@ void QQuickTouchPoint::setUniqueId(const QPointingDeviceUniqueId &id)
\c canceled should be handled in addition to \l released.
\a touchPoints is the list of canceled points.
-
- The corresponding handler is \c onCanceled.
*/
/*!
@@ -411,8 +403,6 @@ void QQuickTouchPoint::setUniqueId(const QPointingDeviceUniqueId &id)
gesture is not grabbed, the nesting Flickable, for example, would also have an opportunity to grab.
The \a gesture object also includes information on the current set of \c touchPoints and the \c dragThreshold.
-
- The corresponding handler is \c onGestureStarted.
*/
/*!
@@ -421,8 +411,6 @@ void QQuickTouchPoint::setUniqueId(const QPointingDeviceUniqueId &id)
This signal is emitted when the touch points handled by the MultiPointTouchArea change. This includes adding new touch points,
removing or canceling previous touch points, as well as updating current touch point data. \a touchPoints is the list of all current touch
points.
-
- The corresponding handler is \c onTouchUpdated.
*/
/*!