summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <jeremy.katz@nokia.com>2012-07-27 16:20:52 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-30 08:45:15 +0200
commitff1ea44b67d0755291d82f98b67080097e47bf60 (patch)
tree447f19c82a88cd4af34a9863b0882078d9bb15e1
parent6a5dc7eb3fc3d885a7b0e9ee26f7a9b29d7ae2d1 (diff)
fix QEventLoop qdoc errors
Change-Id: I17bb720d539a7ccf5d9a3b20853897ff052fc8a6 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
-rw-r--r--src/corelib/kernel/qeventloop.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/corelib/kernel/qeventloop.cpp b/src/corelib/kernel/qeventloop.cpp
index deea463061..bf72ae3697 100644
--- a/src/corelib/kernel/qeventloop.cpp
+++ b/src/corelib/kernel/qeventloop.cpp
@@ -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.