Fix warning due to undocumented function argument
Change-Id: Ia3a54f296b1edcdce5950bf7acad1b4436d9564a Reviewed-by: Topi Reiniö <topi.reinio@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
789b79fd8a
commit
16a506f418
@ -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.
|
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.
|
||||||
|
|
||||||
|
\sa contains(), indexOf()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int QString::count(QChar ch, Qt::CaseSensitivity cs) const
|
int QString::count(QChar ch, Qt::CaseSensitivity cs) const
|
||||||
|
Loading…
Reference in New Issue
Block a user