summaryrefslogtreecommitdiff
path: root/include/rtl
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2019-03-17 09:42:25 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-03-22 03:05:52 +0100
commit20ea90a557b5bc744fd234e3a20ab1db484cf88b (patch)
treeb2bd350749d419de30347863dd4f264885034ef8 /include/rtl
parent5a907fe76bc628629fddb5501727642468d38dae (diff)
Fix some doxygen-generated documentation.
Doxygen is misled by the "127." at the beginning of a sentence and converts it to "<ol><li>..." So it is erroneously rendered as: all ASCII characters are in the allowed range between 0 and 1. The ASCII string must be NULL-terminated. Change-Id: If36de7d4df668b5f9e9f6c7ea139552798e349d2 Reviewed-on: https://gerrit.libreoffice.org/69360 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/ustring.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx
index 35e0ca7756be..ecb4958761af 100644
--- a/include/rtl/ustring.hxx
+++ b/include/rtl/ustring.hxx
@@ -1037,8 +1037,8 @@ public:
the strings and return a value indicating their relationship.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
This function can't be used for language specific sorting.
@param asciiStr the 8-Bit ASCII character string to be compared.
@@ -1058,8 +1058,8 @@ public:
the strings and return a value indicating their relationship.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
This function can't be used for language specific sorting.
@deprecated This is a confusing overload with unexpectedly different
@@ -1113,8 +1113,8 @@ public:
represents the same sequence of characters as the first string.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
This function can't be used for language specific comparison.
@param asciiStr the 8-Bit ASCII character string to be compared.
@@ -1134,8 +1134,8 @@ public:
represents the same sequence of characters as the first string.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated and must be greater than
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated and must be greater than
or equal to asciiStrLength.
This function can't be used for language specific comparison.
@@ -1163,8 +1163,8 @@ public:
values between 97 and 122 (ASCII a-z).
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
This function can't be used for language specific comparison.
@param asciiStr the 8-Bit ASCII character string to be compared.
@@ -1183,8 +1183,8 @@ public:
the strings and return a value indicating their relationship.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
This function can't be used for language specific sorting.
@param asciiStr the 8-Bit ASCII character string to be compared.
@@ -1234,8 +1234,8 @@ public:
of this string, at the given position.
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated and must be greater than or
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated and must be greater than or
equal to asciiStrLength.
This function can't be used for language specific comparison.
@@ -1272,8 +1272,8 @@ public:
values between 97 and 122 (ASCII a-z).
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated and must be greater than or
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated and must be greater than or
equal to asciiStrLength.
This function can't be used for language specific comparison.
@@ -3544,8 +3544,8 @@ public:
Since this method is optimized for performance, the ASCII character
values are not converted in any way. The caller has to make sure that
- all ASCII characters are in the allowed range between 0 and
- 127. The ASCII string must be NULL-terminated.
+ all ASCII characters are in the allowed range between 0 and 127.
+ The ASCII string must be NULL-terminated.
Note that for string literals it is simpler and more efficient
to directly use the OUString constructor.