diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-04-21 14:05:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-04-23 22:59:07 +0200 |
commit | 503242381527d8d916ae705f240a10a0c291182d (patch) | |
tree | 5cc38cd5a0649b4fabde22c7a638614a24d2d451 | |
parent | 5dc2b5277f4d18533c5fe4d43b016f12da52ed36 (diff) |
Fix some getImplementationName
...to match the corresponding .component entries
Change-Id: I1f32d4533a49f0988a2d5c2b8d20198baab515a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150761
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-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 |