summaryrefslogtreecommitdiffstats
path: root/src/corelib/text
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-06-04 19:13:44 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-06-05 12:13:17 +0200
commitc5f22d1c14a551881a2360c7974a55f6e60f8f7b (patch)
tree6f1a882e7908c5828e26dcff0efff9744211245d /src/corelib/text
parent5f8c6f1760c49c3061ab279b102f7536301ee8e9 (diff)
Fix references to section in QByteArray class doc after title change
This amends commit 9dd8e655cdd26eeaae30645b7fe013d9a696547f to fix the various references to section {8-bit Character Conversions}, which is now renamed {Character Case}. Change-Id: I1f777ab359c616a1b12f05a12b1cd7397f3ccb18 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/text')
-rw-r--r--src/corelib/text/qbytearray.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp
index d3f366a43b..e7056f4bb4 100644
--- a/src/corelib/text/qbytearray.cpp
+++ b/src/corelib/text/qbytearray.cpp
@@ -209,8 +209,7 @@ char *qstrncpy(char *dst, const char *src, uint len)
Special case 2: Returns an arbitrary non-zero value if \a str1 is
\nullptr or \a str2 is \nullptr (but not both).
- \sa qstrncmp(), qstricmp(), qstrnicmp(), {8-bit Character Comparisons},
- QByteArray::compare()
+ \sa qstrncmp(), qstricmp(), qstrnicmp(), {Character Case}, QByteArray::compare()
*/
int qstrcmp(const char *str1, const char *str2)
{
@@ -235,8 +234,7 @@ int qstrcmp(const char *str1, const char *str2)
Special case 2: Returns a random non-zero value if \a str1 is \nullptr
or \a str2 is \nullptr (but not both).
- \sa qstrcmp(), qstricmp(), qstrnicmp(), {8-bit Character Comparisons},
- QByteArray::compare()
+ \sa qstrcmp(), qstricmp(), qstrnicmp(), {Character Case}, QByteArray::compare()
*/
/*! \relates QByteArray
@@ -255,8 +253,7 @@ int qstrcmp(const char *str1, const char *str2)
Special case 2: Returns a random non-zero value if \a str1 is \nullptr
or \a str2 is \nullptr (but not both).
- \sa qstrcmp(), qstrncmp(), qstrnicmp(), {8-bit Character Comparisons},
- QByteArray::compare()
+ \sa qstrcmp(), qstrncmp(), qstrnicmp(), {Character Case}, QByteArray::compare()
*/
int qstricmp(const char *str1, const char *str2)
@@ -346,8 +343,7 @@ int qstricmp(const char *str1, const char *str2)
Special case 2: Returns a random non-zero value if \a str1 is \nullptr
or \a str2 is \nullptr (but not both).
- \sa qstrcmp(), qstrncmp(), qstricmp(), {8-bit Character Comparisons},
- QByteArray::compare()
+ \sa qstrcmp(), qstrncmp(), qstricmp(), {Character Case}, QByteArray::compare()
*/
int qstrnicmp(const char *str1, const char *str2, uint len)
@@ -3016,7 +3012,7 @@ QByteArray QByteArray::mid(int pos, int len) const
Example:
\snippet code/src_corelib_text_qbytearray.cpp 30
- \sa isLower(), toUpper(), {8-bit Character Comparisons}
+ \sa isLower(), toUpper(), {Character Case}
*/
// prevent the compiler from inlining the function in each of
@@ -3069,7 +3065,7 @@ QByteArray QByteArray::toLower_helper(QByteArray &a)
Example:
\snippet code/src_corelib_text_qbytearray.cpp 31
- \sa isUpper(), toLower(), {8-bit Character Comparisons}
+ \sa isUpper(), toLower(), {Character Case}
*/
QByteArray QByteArray::toUpper_helper(const QByteArray &a)