doc: Removed two cases of // static

They were preventing clangqdoc from matching two
qdoc comments with the functions they are meant
to document.

Change-Id: I51fea7957debc6fbfc89eb1a531ba8f39a34410a
Reviewed-by: Martin Smith <martin.smith@qt.io>
This commit is contained in:
Martin Smith 2017-01-02 12:17:08 +01:00
parent 725c2346b1
commit c64ad695fa

View File

@ -819,7 +819,6 @@ void QTapAndHoldGesture::setPosition(const QPointF &value)
later the touch is still down, it will trigger the QTapAndHoldGesture. later the touch is still down, it will trigger the QTapAndHoldGesture.
The default value is 700 milliseconds. The default value is 700 milliseconds.
*/ */
// static
void QTapAndHoldGesture::setTimeout(int msecs) void QTapAndHoldGesture::setTimeout(int msecs)
{ {
QTapAndHoldGesturePrivate::Timeout = msecs; QTapAndHoldGesturePrivate::Timeout = msecs;
@ -832,7 +831,6 @@ void QTapAndHoldGesture::setTimeout(int msecs)
later the touch is still down, it will trigger the QTapAndHoldGesture. later the touch is still down, it will trigger the QTapAndHoldGesture.
The default value is 700 milliseconds. The default value is 700 milliseconds.
*/ */
// static
int QTapAndHoldGesture::timeout() int QTapAndHoldGesture::timeout()
{ {
return QTapAndHoldGesturePrivate::Timeout; return QTapAndHoldGesturePrivate::Timeout;