From d211909bb95f99b5adc6d49f60610f4d0676afbd Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 5 Sep 2020 18:33:27 +0200 Subject: 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 --- i18npool/source/textconversion/textconversion_zh.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3