i18npool/source/textconversion/textconversion_zh.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit d211909bb95f99b5adc6d49f60610f4d0676afbd
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Sat Sep 5 18:33:27 2020 +0200
Commit:     Stephan Bergmann <sberg...@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 <sberg...@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)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to