summaryrefslogtreecommitdiffstats
path: root/include/i18nutil
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:56:14 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:18 +0100
commit25df36cf04b6ad94da09725a0bfe012b404b7de2 (patch)
tree5f8846249277ff4f6e65b86c91dc8c854606b178 /include/i18nutil
parentNew loplugin:dynexcspec: Add @throws documentation, io (diff)
downloadcore-25df36cf04b6ad94da09725a0bfe012b404b7de2.tar.gz
core-25df36cf04b6ad94da09725a0bfe012b404b7de2.zip
New loplugin:dynexcspec: Add @throws documentation, i18nutil
Change-Id: I2688ebab7641db43aae5cbca94750fbecff936e1
Diffstat (limited to 'include/i18nutil')
-rw-r--r--include/i18nutil/casefolding.hxx3
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);
};