diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:56:14 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:18 +0100 |
commit | 25df36cf04b6ad94da09725a0bfe012b404b7de2 (patch) | |
tree | 5f8846249277ff4f6e65b86c91dc8c854606b178 /include | |
parent | f725fadea60a4a74724f8bb9c71aa54a644c35bb (diff) |
New loplugin:dynexcspec: Add @throws documentation, i18nutil
Change-Id: I2688ebab7641db43aae5cbca94750fbecff936e1
Diffstat (limited to 'include')
-rw-r--r-- | include/i18nutil/casefolding.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/i18nutil/casefolding.hxx b/include/i18nutil/casefolding.hxx index 5ddb208ea566..356ee6e6ab37 100644 --- a/include/i18nutil/casefolding.hxx +++ b/include/i18nutil/casefolding.hxx @@ -72,8 +72,11 @@ struct MappingElement class I18NUTIL_DLLPUBLIC casefolding { public: + /// @throws css::uno::RuntimeException static Mapping& getValue(const sal_Unicode* str, sal_Int32 pos, sal_Int32 len, css::lang::Locale& aLocale, MappingType nMappingType) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static Mapping& getConditionalValue(const sal_Unicode* str, sal_Int32 pos, sal_Int32 len, css::lang::Locale& aLocale, MappingType nMappingType) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException static sal_Unicode getNextChar(const sal_Unicode *str, sal_Int32& idx, sal_Int32 len, MappingElement& e, css::lang::Locale& aLocale, MappingType nMappingtype, TransliterationModules moduleLoaded) throw (css::uno::RuntimeException); }; |