[Libreoffice-commits] core.git: i18npool/source
Eike Rathke
erack at redhat.com
Mon Jan 11 09:47:31 PST 2016
i18npool/source/collator/collator_unicode.cxx | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
New commits:
commit 993d84f823c3d8e640f7219d5569c72d92b85b20
Author: Eike Rathke <erack at redhat.com>
Date: Mon Jan 11 18:46:14 2016 +0100
funclen_base is now superfluous here
Change-Id: I3376daf1731be6f02d62d8d659c8c3fff7605171
diff --git a/i18npool/source/collator/collator_unicode.cxx b/i18npool/source/collator/collator_unicode.cxx
index e52bf20..f5fefa0 100644
--- a/i18npool/source/collator/collator_unicode.cxx
+++ b/i18npool/source/collator/collator_unicode.cxx
@@ -156,20 +156,19 @@ Collator_Unicode::loadCollatorAlgorithm(const OUString& rAlgorithm, const lang::
aBuf.append("get_").append(rLocale.Language).append("_");
if ( rLocale.Language == "zh" ) {
OUString func_base = aBuf.makeStringAndClear();
- OUString funclen_base = func_base;
if (OUString("TW HK MO").indexOf(rLocale.Country) >= 0)
{
func = reinterpret_cast<const sal_uInt8* (*)()>(osl_getFunctionSymbol(hModule,
OUString(func_base + "TW_" + rAlgorithm).pData));
funclen = reinterpret_cast<size_t (*)()>(osl_getFunctionSymbol(hModule,
- OUString(funclen_base + "TW_" + rAlgorithm + "_length").pData));
+ OUString(func_base + "TW_" + rAlgorithm + "_length").pData));
}
if (!func)
{
func = reinterpret_cast<const sal_uInt8* (*)()>(osl_getFunctionSymbol(
hModule, OUString(func_base + rAlgorithm).pData));
funclen = reinterpret_cast<size_t (*)()>(osl_getFunctionSymbol(
- hModule, OUString(funclen_base + rAlgorithm + "_length").pData));
+ hModule, OUString(func_base + rAlgorithm + "_length").pData));
}
} else {
if ( rLocale.Language == "ja" ) {
More information about the Libreoffice-commits
mailing list