diff options
author | Martin Smith <msmith@trolltech.com> | 2009-07-01 09:49:29 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-07-01 09:50:23 (GMT) |
commit | f1d54091ec24e6cf57008f9b4fac7ddf7c7c8de3 (patch) | |
tree | eafe2e3fbb1d2eecbd65e800e066b09fb9b62ee1 /src/gui/kernel/qgesture.cpp | |
parent | 728430d16fd62de001ba8eaccabae41feef790f2 (diff) | |
download | Qt-f1d54091ec24e6cf57008f9b4fac7ddf7c7c8de3.zip Qt-f1d54091ec24e6cf57008f9b4fac7ddf7c7c8de3.tar.gz Qt-f1d54091ec24e6cf57008f9b4fac7ddf7c7c8de3.tar.bz2 |
doc: Fixed several qdoc error reports.
Also changed qdoc not to warn about undocumented parameters
if the function is marked with the \reimp command.
Diffstat (limited to 'src/gui/kernel/qgesture.cpp')
-rw-r--r-- | src/gui/kernel/qgesture.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui/kernel/qgesture.cpp b/src/gui/kernel/qgesture.cpp index d7b2d1b..ff369e2 100644 --- a/src/gui/kernel/qgesture.cpp +++ b/src/gui/kernel/qgesture.cpp @@ -266,6 +266,22 @@ void QGesture::setPos(const QPoint &point) d_func()->pos = point; } +/*! \fn void QGesture::setAccepted(bool accepted) + Marks the gesture with the value of \a accepted. + */ + +/*! \fn bool QGesture::isAccepted() const + Returns true if the gesture is marked accepted. + */ + +/*! \fn void QGesture::accept() + Marks the gesture accepted. +*/ + +/*! \fn void QGesture::ignore() + Marks the gesture ignored. +*/ + /*! \class QPanningGesture \since 4.6 |