summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicssceneevent.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-07-02 06:39:57 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-07-02 06:41:02 (GMT)
commitf126b8cc5733d2cd37dd2aad9119e482b0d4a0e6 (patch)
treec76c6053563262e974d982501b8377a9da200b2e /src/gui/graphicsview/qgraphicssceneevent.cpp
parentfb1fa68ae8555deeaeaf6f193c678269c85ffc4d (diff)
downloadQt-f126b8cc5733d2cd37dd2aad9119e482b0d4a0e6.zip
Qt-f126b8cc5733d2cd37dd2aad9119e482b0d4a0e6.tar.gz
Qt-f126b8cc5733d2cd37dd2aad9119e482b0d4a0e6.tar.bz2
doc: Corrected several qdoc warnings.
Diffstat (limited to 'src/gui/graphicsview/qgraphicssceneevent.cpp')
-rw-r--r--src/gui/graphicsview/qgraphicssceneevent.cpp35
1 files changed, 18 insertions, 17 deletions
diff --git a/src/gui/graphicsview/qgraphicssceneevent.cpp b/src/gui/graphicsview/qgraphicssceneevent.cpp
index 7906fb8..338f12a 100644
--- a/src/gui/graphicsview/qgraphicssceneevent.cpp
+++ b/src/gui/graphicsview/qgraphicssceneevent.cpp
@@ -1875,12 +1875,12 @@ void QGraphicsSceneGestureEvent::setGestures(const QSet<QGesture*> &gestures)
}
/*!
- Sets the accept flag of the all gestures inside the event object,
- the equivalent of calling \l{QEvent::accept()}{accept()} or
- \l{QEvent::setAccepted()}{setAccepted(true)}.
+ Sets the accept flag of the all gestures for the event object.
+ This is the equivalent of calling \l{QEvent::accept()} {accept()}
+ or \l{QEvent::setAccepted()}{setAccepted(true)}.
- Setting the accept parameter indicates that the event receiver
- wants the gesture. Unwanted gestures might be propagated to the parent
+ Setting the accept flag indicates that the event receiver wants
+ the gesture. Unwanted gestures might be propagated to the parent
widget.
*/
void QGraphicsSceneGestureEvent::acceptAll()
@@ -1893,13 +1893,14 @@ void QGraphicsSceneGestureEvent::acceptAll()
}
/*!
- Sets the accept flag of the specified gesture inside the event
- object, the equivalent of calling
- \l{QGestureEvent::gesture()}{gesture(type)}->\l{QGesture::accept()}{accept()}
- Setting the accept parameter indicates that the event receiver
- wants the gesture. Unwanted gestures might be propagated to the parent
- widget.
+ Sets the accept flag of the gesture specified by \a type. This is
+ equivalent to calling \l{QGestureEvent::gesture()} {gesture(type)}->
+ \l{QGesture::accept()}{accept()}
+
+ Setting the accept flag indicates that the event receiver
+ wants the gesture. Unwanted gestures might be propagated to the parent
+ widget.
*/
void QGraphicsSceneGestureEvent::accept(Qt::GestureType type)
{
@@ -1908,13 +1909,13 @@ void QGraphicsSceneGestureEvent::accept(Qt::GestureType type)
}
/*!
- Sets the accept flag of the specified gesture inside the event
- object, the equivalent of calling
- \l{QGestureEvent::gesture()}{gesture(type)}->\l{QGesture::accept()}{accept()}
- Setting the accept parameter indicates that the event receiver
- wants the gesture. Unwanted gestures might be propagated to the parent
- widget.
+ Sets the accept flag of the gesture specified by \a type. This is
+ equivalent to calling \l{QGestureEvent::gesture()} {gesture(type)}->
+ \l{QGesture::accept()}{accept()}
+
+ Setting the accept flag indicates that the event receiver wants the
+ gesture. Unwanted gestures might be propagated to the parent widget.
*/
void QGraphicsSceneGestureEvent::accept(const QString &type)
{