summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestcase.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-10-02 12:04:43 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-10-02 12:56:56 (GMT)
commit2bfff24add67c1e5e0b1273a4b0399d9d94316c1 (patch)
tree127a8f0452f423ff59dc100fa9aa32248681b7d6 /src/testlib/qtestcase.cpp
parent4f0f9f106d1e3e7d08280efbf7d4a2ff3552a361 (diff)
downloadQt-2bfff24add67c1e5e0b1273a4b0399d9d94316c1.zip
Qt-2bfff24add67c1e5e0b1273a4b0399d9d94316c1.tar.gz
Qt-2bfff24add67c1e5e0b1273a4b0399d9d94316c1.tar.bz2
doc: Fixed numerous qdoc errors.
Diffstat (limited to 'src/testlib/qtestcase.cpp')
-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 eb4dee1..9dea6dc 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