[Libreoffice-commits] core.git: i18npool/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Sat Sep 5 20:28:58 UTC 2020
i18npool/source/textconversion/textconversion_zh.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit d211909bb95f99b5adc6d49f60610f4d0676afbd
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Sat Sep 5 18:33:27 2020 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sat Sep 5 22:28:21 2020 +0200
Simplify comparison between OUString and raw pointer
...avoiding the construction of an intermediary temporary OUString, assuming the
given `word` will never contain embedded NUL characters.
(This change is a prerequisite for making the OUString ctor taking a raw pointer
explicit.)
Change-Id: I3b500557abb3554e9dfda63ef30b22c6c06c99c7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102084
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/i18npool/source/textconversion/textconversion_zh.cxx b/i18npool/source/textconversion/textconversion_zh.cxx
index d45baa553e53..23689c0b568e 100644
--- a/i18npool/source/textconversion/textconversion_zh.cxx
+++ b/i18npool/source/textconversion/textconversion_zh.cxx
@@ -218,7 +218,8 @@ TextConversion_zh::getWordConversion(const OUString& aText, sal_Int32 nStartPos,
while (bottom <= top && !found) {
current = (top + bottom) / 2;
- const sal_Int32 result = word.compareTo(wordData + entry[current]);
+ const sal_Int32 result = rtl_ustr_compare(
+ word.getStr(), wordData + entry[current]);
if (result < 0)
top = current - 1;
else if (result > 0)
More information about the Libreoffice-commits
mailing list