diff options
author | Eike Rathke <erack@redhat.com> | 2016-01-11 18:46:14 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-01-11 18:46:39 +0100 |
commit | 993d84f823c3d8e640f7219d5569c72d92b85b20 (patch) | |
tree | 3618954f52cc86ca07e27a55accfdcb617bcd714 /i18npool | |
parent | c93a43c0c9113bc1c787fe6b3c5e58a8bfd80be0 (diff) |
funclen_base is now superfluous here
Change-Id: I3376daf1731be6f02d62d8d659c8c3fff7605171
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/collator/collator_unicode.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/i18npool/source/collator/collator_unicode.cxx b/i18npool/source/collator/collator_unicode.cxx index e52bf20700de..f5fefa0a49c8 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" ) { |