From: Louai Al-Khanji Date: Mon, 24 Aug 2015 07:28:31 +0000 (+0300) Subject: Fix warning due to undocumented function argument X-Git-Tag: v5.5.90+alpha1~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16a506f41880a6e7b3329eae3383b5f631c019a4;p=platform%2Fupstream%2Fqtbase.git Fix warning due to undocumented function argument Change-Id: Ia3a54f296b1edcdce5950bf7acad1b4436d9564a Reviewed-by: Topi Reiniƶ Reviewed-by: Thiago Macieira --- diff --git a/src/corelib/tools/qstring.cpp b/src/corelib/tools/qstring.cpp index b16ae6a14a..e3a3cc79c6 100644 --- a/src/corelib/tools/qstring.cpp +++ b/src/corelib/tools/qstring.cpp @@ -3616,9 +3616,14 @@ int QString::count(const QString &str, Qt::CaseSensitivity cs) const } /*! - \overload count() + \overload count() + + Returns the number of occurrences of character \a ch in the string. + + If \a cs is Qt::CaseSensitive (default), the search is + case sensitive; otherwise the search is case insensitive. - Returns the number of occurrences of character \a ch in the string. + \sa contains(), indexOf() */ int QString::count(QChar ch, Qt::CaseSensitivity cs) const