summaryrefslogtreecommitdiff
path: root/i18npool/source/transliteration/smallToLarge_ja_JP.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/source/transliteration/smallToLarge_ja_JP.cxx')
-rw-r--r--i18npool/source/transliteration/smallToLarge_ja_JP.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/source/transliteration/smallToLarge_ja_JP.cxx b/i18npool/source/transliteration/smallToLarge_ja_JP.cxx
index fb48392df152..180db1d3a0b2 100644
--- a/i18npool/source/transliteration/smallToLarge_ja_JP.cxx
+++ b/i18npool/source/transliteration/smallToLarge_ja_JP.cxx
@@ -24,7 +24,7 @@
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
-namespace com { namespace sun { namespace star { namespace i18n {
+namespace i18npool {
// ftp://ftp.unicode.org/Public/3.0-Update/UnicodeData-3.0.0.txt
// ftp://ftp.unicode.org/Public/3.0-Update/UnicodeData-3.0.0.html
@@ -32,7 +32,7 @@ namespace com { namespace sun { namespace star { namespace i18n {
// http://charts.unicode.org/Web/U30A0.html Katakana (U+30A0..U+30FF)
// http://charts.unicode.org/Web/UFF00.html
-OneToOneMappingTable_t const small2large[] = {
+i18nutil::OneToOneMappingTable_t const small2large[] = {
{ 0x3041, 0x3042 }, // HIRAGANA LETTER SMALL A --> HIRAGANA LETTER A
{ 0x3043, 0x3044 }, // HIRAGANA LETTER SMALL I --> HIRAGANA LETTER I
{ 0x3045, 0x3046 }, // HIRAGANA LETTER SMALL U --> HIRAGANA LETTER U
@@ -68,13 +68,13 @@ OneToOneMappingTable_t const small2large[] = {
smallToLarge_ja_JP::smallToLarge_ja_JP()
{
- static oneToOneMapping _table(small2large, sizeof(small2large));
+ static i18nutil::oneToOneMapping _table(small2large, sizeof(small2large));
func = nullptr;
table = &_table;
transliterationName = "smallToLarge_ja_JP";
implementationName = "com.sun.star.i18n.Transliteration.smallToLarge_ja_JP";
}
-} } } }
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */