From 993d84f823c3d8e640f7219d5569c72d92b85b20 Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Mon, 11 Jan 2016 18:46:14 +0100 Subject: funclen_base is now superfluous here Change-Id: I3376daf1731be6f02d62d8d659c8c3fff7605171 --- i18npool/source/collator/collator_unicode.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'i18npool/source/collator') 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(osl_getFunctionSymbol(hModule, OUString(func_base + "TW_" + rAlgorithm).pData)); funclen = reinterpret_cast(osl_getFunctionSymbol(hModule, - OUString(funclen_base + "TW_" + rAlgorithm + "_length").pData)); + OUString(func_base + "TW_" + rAlgorithm + "_length").pData)); } if (!func) { func = reinterpret_cast(osl_getFunctionSymbol( hModule, OUString(func_base + rAlgorithm).pData)); funclen = reinterpret_cast(osl_getFunctionSymbol( - hModule, OUString(funclen_base + rAlgorithm + "_length").pData)); + hModule, OUString(func_base + rAlgorithm + "_length").pData)); } } else { if ( rLocale.Language == "ja" ) { -- cgit