From 43c0c12369f379ec1c851486883a855f8f445d70 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Thu, 31 May 2012 21:19:42 -0500 Subject: targeted string re-work Change-Id: Ie250e1953c84caea5e67c26c7a4f9a1ae206f42b --- i18npool/source/textconversion/textconversion.cxx | 4 ++-- i18npool/source/transliteration/textToPronounce_zh.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'i18npool/source') diff --git a/i18npool/source/textconversion/textconversion.cxx b/i18npool/source/textconversion/textconversion.cxx index 30b7fefc0892..39c5ce462925 100644 --- a/i18npool/source/textconversion/textconversion.cxx +++ b/i18npool/source/textconversion/textconversion.cxx @@ -46,9 +46,9 @@ TextConversion::TextConversion() { #ifndef DISABLE_DYNLOADING #ifdef SAL_DLLPREFIX - OUString lib(RTL_CONSTASCII_USTRINGPARAM(SAL_DLLPREFIX"textconv_dict" SAL_DLLEXTENSION)); + OUString lib(SAL_DLLPREFIX"textconv_dict" SAL_DLLEXTENSION); #else - OUString lib(RTL_CONSTASCII_USTRINGPARAM("textconv_dict" SAL_DLLEXTENSION)); + OUString lib("textconv_dict" SAL_DLLEXTENSION); #endif hModule = osl_loadModuleRelative( &thisModule, lib.pData, SAL_LOADMODULE_DEFAULT ); diff --git a/i18npool/source/transliteration/textToPronounce_zh.cxx b/i18npool/source/transliteration/textToPronounce_zh.cxx index 7e94b07a084c..3cf3f451920c 100644 --- a/i18npool/source/transliteration/textToPronounce_zh.cxx +++ b/i18npool/source/transliteration/textToPronounce_zh.cxx @@ -172,9 +172,9 @@ extern "C" { static void SAL_CALL thisModule() {} } TextToPronounce_zh::TextToPronounce_zh(const sal_Char* func_name) { #ifdef SAL_DLLPREFIX - OUString lib(RTL_CONSTASCII_USTRINGPARAM(SAL_DLLPREFIX"index_data" SAL_DLLEXTENSION)); + OUString lib(SAL_DLLPREFIX"index_data" SAL_DLLEXTENSION); #else - OUString lib(RTL_CONSTASCII_USTRINGPARAM("index_data" SAL_DLLEXTENSION)); + OUString lib("index_data" SAL_DLLEXTENSION); #endif hModule = osl_loadModuleRelative( &thisModule, lib.pData, SAL_LOADMODULE_DEFAULT ); -- cgit