summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-24 12:45:48 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-25 00:00:23 +0100
commitcd8e11ed416035763dc25a25a71291d10976943a (patch)
tree0392167186a7cbac362f4bf7659a4ec00d335734
parent48679a3748108fc600853f5f7355cb8495c649d2 (diff)
Doc: Fix warning about nonexistent 'message' parameter
Change-Id: I3461f2468ef90452ae7e3830625bf3ed57d22a41 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
-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 7b225ef5b4..3ab3fcc44c 100644
--- a/src/testlib/qtestcase.cpp
+++ b/src/testlib/qtestcase.cpp
@@ -2591,10 +2591,10 @@ void QTest::ignoreMessage(QtMsgType type, const char *message)
/*!
\overload
- Ignores messages created by qDebug() or qWarning(). If the \a message
+ Ignores messages created by qDebug() or qWarning(). If the message
matching \a messagePattern
with the corresponding \a type is outputted, it will be removed from the
- test log. If the test finished and the \a message was not outputted,
+ test log. If the test finished and the message was not outputted,
a test failure is appended to the test log.
\b {Note:} Invoking this function will only ignore one message.