Fix warning due to undocumented function argument
authorLouai Al-Khanji <louai.al-khanji@theqtcompany.com>
Mon, 24 Aug 2015 07:28:31 +0000 (10:28 +0300)
committerLouai Al-Khanji <louai.al-khanji@theqtcompany.com>
Tue, 25 Aug 2015 06:00:49 +0000 (06:00 +0000)
Change-Id: Ia3a54f296b1edcdce5950bf7acad1b4436d9564a
Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
src/corelib/tools/qstring.cpp

index b16ae6a14a4e80bf0d124335011e01d9a76fd8ca..e3a3cc79c6cc68b7f949082f644abdd9d4fda128 100644 (file)
@@ -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