summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-03-17 08:03:48 +0000
committerOliver Bolte <obo@openoffice.org>2004-03-17 08:03:48 +0000
commit24266f68e6e1f5d0a4eca75a9e4572818f7c3548 (patch)
tree1c4181d29e05238751f9e466d59170fdaae9233a /i18npool
parentf575ecafd5d0153f396d472250df0e2b00e688b8 (diff)
INTEGRATION: CWS i18n11 (1.7.70); FILE MERGED
2004/01/06 22:30:47 khong 1.7.70.1: #105745# #107978# #109715# #110835# #112014# #112068# #112094# #112102# #112282# fix Japanese ambiguous search problems
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/transliteration/ignoreWidth.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/transliteration/ignoreWidth.cxx b/i18npool/source/transliteration/ignoreWidth.cxx
index d4a16de4370b..f3e69e4cbf0f 100644
--- a/i18npool/source/transliteration/ignoreWidth.cxx
+++ b/i18npool/source/transliteration/ignoreWidth.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ignoreWidth.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2003-04-28 16:53:09 $
+ * last change: $Author: obo $ $Date: 2004-03-17 09:03:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,7 +78,7 @@ OUString SAL_CALL
ignoreWidth::folding( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, Sequence< sal_Int32 >& offset )
throw(RuntimeException)
{
- fullwidthToHalfwidth t1;
+ halfwidthToFullwidth t1;
return t1.transliterate(inStr, startPos, nCount, offset);
}
@@ -96,7 +96,7 @@ ignoreWidth::transliterateRange( const OUString& str1, const OUString& str2 )
sal_Unicode SAL_CALL
ignoreWidth::transliterateChar2Char( sal_Unicode inChar) throw(RuntimeException, MultipleCharsOutputException)
{
- fullwidthToHalfwidth t1;
+ halfwidthToFullwidth t1;
return t1.transliterateChar2Char(inChar);
}