diff options
-rw-r--r-- | i18npool/inc/transliteration_Ignore.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/i18npool/inc/transliteration_Ignore.hxx b/i18npool/inc/transliteration_Ignore.hxx index 3ce28f5c682a..ba685c8e4548 100644 --- a/i18npool/inc/transliteration_Ignore.hxx +++ b/i18npool/inc/transliteration_Ignore.hxx @@ -126,7 +126,7 @@ TRANSLITERATION_IGNORE(ProlongedSoundMark_ja_JP) #undef TRANSLITERATION_IGNORE -#define TRANSLITERATION_IGNORE( name ) \ +#define TRANSLITERATION_IGNORE( name, implname ) \ class ignore##name final : public transliteration_Ignore {\ public:\ ignore##name () {\ @@ -134,7 +134,7 @@ public:\ table = nullptr;\ map = nullptr;\ transliterationName = "ignore"#name;\ - implementationName = "com.sun.star.i18n.Transliteration.ignore"#name;\ + implementationName = "com.sun.star.i18n.Transliteration." implname;\ };\ OUString foldingImpl( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, \ css::uno::Sequence< sal_Int32 >* pOffset) override; \ @@ -146,9 +146,9 @@ public:\ override;\ }; -TRANSLITERATION_IGNORE(Kana) -TRANSLITERATION_IGNORE(Width) -TRANSLITERATION_IGNORE(Size_ja_JP) +TRANSLITERATION_IGNORE(Kana, "IGNORE_KANA") +TRANSLITERATION_IGNORE(Width, "IGNORE_WIDTH") +TRANSLITERATION_IGNORE(Size_ja_JP, "ignoreSize_ja_JP") #undef TRANSLITERATION_IGNORE |