Doc: Fix warning about nonexistent 'message' parameter

Change-Id: I3461f2468ef90452ae7e3830625bf3ed57d22a41
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
Sergio Ahumada 2014-03-24 12:45:48 +01:00 committed by The Qt Project
parent 48679a3748
commit cd8e11ed41

View File

@ -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.