diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-04-21 13:59:29 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-04-24 00:09:25 +0200 |
commit | 898cf0b7d9e3198cb17f68ef6e6cf6d80ae03780 (patch) | |
tree | 5891cbab95567b1e1ce4b90d2d9241e9c44ee35b | |
parent | 503242381527d8d916ae705f240a10a0c291182d (diff) |
Fix some getImplementationName
...to match the corresponding .component entries,
> com.sun.star.i18n.IndexEntrySupplier_ja_phonetic (alphanumeric first) (grouped by consonant)
etc. rather than
> com.sun.star.i18n.IndexEntrySupplier_"(alphanumeric first) (grouped by consonant)"
etc.
Change-Id: I7fa0f9c7615b5cb1b7c0c6a8908cad27f0ac5712
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150760
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | i18npool/inc/indexentrysupplier_ja_phonetic.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/inc/indexentrysupplier_ja_phonetic.hxx b/i18npool/inc/indexentrysupplier_ja_phonetic.hxx index 97c10df538fe..ea19dcb12aee 100644 --- a/i18npool/inc/indexentrysupplier_ja_phonetic.hxx +++ b/i18npool/inc/indexentrysupplier_ja_phonetic.hxx @@ -45,7 +45,7 @@ public: class IndexEntrySupplier_##algorithm final : public IndexEntrySupplier_ja_phonetic {\ public:\ IndexEntrySupplier_##algorithm (const css::uno::Reference < css::uno::XComponentContext >& rxContext) : IndexEntrySupplier_ja_phonetic (rxContext) {\ - implementationName = "com.sun.star.i18n.IndexEntrySupplier_"#algo_descr;\ + implementationName = "com.sun.star.i18n.IndexEntrySupplier_ja_phonetic" algo_descr;\ };\ virtual sal_Bool SAL_CALL loadAlgorithm(\ const css::lang::Locale& rLocale,\ |