summaryrefslogtreecommitdiffstats
path: root/src/testlib
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-10-02 14:04:43 +0200
committerMartin Smith <msmith@trolltech.com>2009-10-02 14:56:56 +0200
commit2bfff24add67c1e5e0b1273a4b0399d9d94316c1 (patch)
tree127a8f0452f423ff59dc100fa9aa32248681b7d6 /src/testlib
parent4f0f9f106d1e3e7d08280efbf7d4a2ff3552a361 (diff)
doc: Fixed numerous qdoc errors.
Diffstat (limited to 'src/testlib')
-rw-r--r--src/testlib/qtestcase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testlib/qtestcase.cpp b/src/testlib/qtestcase.cpp
index eb4dee1a25..9dea6dcb14 100644
--- a/src/testlib/qtestcase.cpp
+++ b/src/testlib/qtestcase.cpp
@@ -734,12 +734,12 @@ QT_BEGIN_NAMESPACE
\sa QTest::qSleep()
*/
-/*! \fn void QTest::qWaitForWindowShown(QWidget *window)
+/*! \fn bool QTest::qWaitForWindowShown(QWidget *window)
\since 4.6
Waits until the \a window is shown in the screen. This is mainly useful for
asynchronous systems like X11, where a window will be mapped to screen some
- time after being asked to show itself on the screen.
+ time after being asked to show itself on the screen. Returns true.
Example:
\snippet doc/src/snippets/code/src_qtestlib_qtestcase.cpp 24