summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qevent.cpp
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-03-16 14:55:30 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2009-05-11 14:51:35 (GMT)
commit415039d9c9dab219505cc082981e2175a8977b03 (patch)
treee02514f725ad14185b2acaee3a79de1562323cd6 /src/gui/kernel/qevent.cpp
parentd392c3073c10d053ffcd5d64d4f9d89a971fcb2d (diff)
downloadQt-415039d9c9dab219505cc082981e2175a8977b03.zip
Qt-415039d9c9dab219505cc082981e2175a8977b03.tar.gz
Qt-415039d9c9dab219505cc082981e2175a8977b03.tar.bz2
More documentation fixes.
Diffstat (limited to 'src/gui/kernel/qevent.cpp')
-rw-r--r--src/gui/kernel/qevent.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp
index 3ce2517..dbfe528 100644
--- a/src/gui/kernel/qevent.cpp
+++ b/src/gui/kernel/qevent.cpp
@@ -3540,13 +3540,6 @@ QGestureEvent::QGestureEvent(const QList<QGesture*> &gestures,
m_gestures.insert(r->gestureType(), QSharedPointer<QGesture>(r));
}
-QGestureEvent::QGestureEvent(const QGestureEvent &event, const QPoint &offset)
- : QEvent(QEvent::Gesture), m_gestures(event.m_gestures),
- m_cancelledGestures(event.m_cancelledGestures)
-{
- //### use offset!
-}
-
/*!
Destroys the QGestureEvent object.
*/
@@ -3555,7 +3548,8 @@ QGestureEvent::~QGestureEvent()
}
/*!
- Checks if the gesture event contains gesture of specific \a type.
+ Returns true if the gesture event contains gesture of specific \a
+ type; returns false otherwise.
*/
bool QGestureEvent::contains(Qt::GestureType type) const
{
@@ -3563,7 +3557,8 @@ bool QGestureEvent::contains(Qt::GestureType type) const
}
/*!
- Checks if the gesture event contains gesture of specific \a type.
+ Returns true if the gesture event contains gesture of specific \a
+ type; returns false otherwise.
*/
bool QGestureEvent::contains(const QString &type) const
{