i18npool/inc/transliteration_Ignore.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
New commits: commit 503242381527d8d916ae705f240a10a0c291182d Author: Stephan Bergmann <sberg...@redhat.com> AuthorDate: Fri Apr 21 14:05:07 2023 +0200 Commit: Stephan Bergmann <sberg...@redhat.com> CommitDate: Sun Apr 23 22:59:07 2023 +0200 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 <sberg...@redhat.com> 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