fix QEventLoop qdoc errors

Change-Id: I17bb720d539a7ccf5d9a3b20853897ff052fc8a6
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
This commit is contained in:
Jeremy Katz 2012-07-27 16:20:52 +02:00 committed by Qt by Nokia
parent 6a5dc7eb3f
commit ff1ea44b67

View File

@ -156,7 +156,7 @@ bool QEventLoop::processEvents(ProcessEventsFlags flags)
QTimer with 0 timeout. More sophisticated idle processing schemes
can be achieved using processEvents().
\sa QApplication::quit(), exit(), processEvents()
\sa QCoreApplication::quit(), exit(), processEvents()
*/
int QEventLoop::exec(ProcessEventsFlags flags)
{
@ -297,6 +297,9 @@ void QEventLoop::wakeUp()
}
/*!
\reimp
*/
bool QEventLoop::event(QEvent *event)
{
if (event->type() == QEvent::Quit) {
@ -401,7 +404,7 @@ QEventLoopLocker::QEventLoopLocker()
}
/*!
Creates an event locker operating on the \p loop.
Creates an event locker operating on the \a loop.
This particular QEventLoop will quit when there are no more QEventLoopLockers operating on it.
@ -414,7 +417,7 @@ QEventLoopLocker::QEventLoopLocker(QEventLoop *loop)
}
/*!
Creates an event locker operating on the \p thread.
Creates an event locker operating on the \a thread.
This particular QThread will quit when there are no more QEventLoopLockers operating on it.