summaryrefslogtreecommitdiff
path: root/i18nutil/source/utility/widthfolding.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18nutil/source/utility/widthfolding.cxx')
-rw-r--r--i18nutil/source/utility/widthfolding.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/i18nutil/source/utility/widthfolding.cxx b/i18nutil/source/utility/widthfolding.cxx
index 628888199fb1..0777c979101f 100644
--- a/i18nutil/source/utility/widthfolding.cxx
+++ b/i18nutil/source/utility/widthfolding.cxx
@@ -47,7 +47,7 @@ OUString widthfolding::decompose_ja_voiced_sound_marks (const OUString& inStr, s
// Create a string buffer which can hold nCount * 2 + 1 characters.
// Its size may become double of nCount.
// The reference count is 1 now.
- rtl_uString * newStr = comphelper::string::rtl_uString_alloc(nCount * 2);
+ rtl_uString * newStr = rtl_uString_alloc(nCount * 2);
sal_Int32 *p = NULL;
sal_Int32 position = 0;
@@ -109,7 +109,7 @@ OUString widthfolding::compose_ja_voiced_sound_marks (const OUString& inStr, sal
// Create a string buffer which can hold nCount + 1 characters.
// Its size may become equal to nCount or smaller.
// The reference count is 1 now.
- rtl_uString * newStr = comphelper::string::rtl_uString_alloc(nCount);
+ rtl_uString * newStr = rtl_uString_alloc(nCount);
// Prepare pointers of unicode character arrays.
const sal_Unicode* src = inStr.getStr() + startPos;