summaryrefslogtreecommitdiff
path: root/i18npool/source/transliteration/ignoreSize_ja_JP.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-04-08 15:04:22 +0000
committerRüdiger Timm <rt@openoffice.org>2003-04-08 15:04:22 +0000
commit2258b1341097293cf3611a5afe9f48ce49407c40 (patch)
tree3aca8b10c2fe717b452fe045fd02757ca31c5062 /i18npool/source/transliteration/ignoreSize_ja_JP.cxx
parent5c6a19f449db857e93ec46a1befc6b93911a7ed1 (diff)
INTEGRATION: CWS calc06 (1.2.42); FILE MERGED
2003/03/21 22:08:11 khong 1.2.42.1: #106680# Implementing new XExtendedTransliteration interface
Diffstat (limited to 'i18npool/source/transliteration/ignoreSize_ja_JP.cxx')
-rw-r--r--i18npool/source/transliteration/ignoreSize_ja_JP.cxx18
1 files changed, 13 insertions, 5 deletions
diff --git a/i18npool/source/transliteration/ignoreSize_ja_JP.cxx b/i18npool/source/transliteration/ignoreSize_ja_JP.cxx
index b0e2dea4adb3..125a95eb9b67 100644
--- a/i18npool/source/transliteration/ignoreSize_ja_JP.cxx
+++ b/i18npool/source/transliteration/ignoreSize_ja_JP.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ignoreSize_ja_JP.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 10:54:48 $
+ * last change: $Author: rt $ $Date: 2003-04-08 16:03:59 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -68,6 +68,7 @@
#define TRANSLITERATION_largeToSmall_ja_JP
#include <transliteration_OneToOne.hxx>
+using namespace drafts::com::sun::star::i18n;
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
using namespace rtl;
@@ -87,10 +88,17 @@ Sequence< OUString > SAL_CALL
ignoreSize_ja_JP::transliterateRange( const OUString& str1, const OUString& str2 )
throw(RuntimeException)
{
- smallToLarge_ja_JP t1;
- largeToSmall_ja_JP t2;
+ smallToLarge_ja_JP t1;
+ largeToSmall_ja_JP t2;
+
+ return transliteration_Ignore::transliterateRange(str1, str2, t1, t2);
+}
- return transliteration_Ignore::transliterateRange(str1, str2, t1, t2);
+sal_Unicode SAL_CALL
+ignoreSize_ja_JP::transliterateChar2Char( sal_Unicode inChar) throw(RuntimeException, MultipleCharsOutputException)
+{
+ smallToLarge_ja_JP t1;
+ return t1.transliterateChar2Char(inChar);
}
} } } }