summaryrefslogtreecommitdiff
path: root/i18npool/inc/transliteration_OneToOne.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/inc/transliteration_OneToOne.hxx')
-rw-r--r--i18npool/inc/transliteration_OneToOne.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/i18npool/inc/transliteration_OneToOne.hxx b/i18npool/inc/transliteration_OneToOne.hxx
index 36504c37f699..ea9ba6528e56 100644
--- a/i18npool/inc/transliteration_OneToOne.hxx
+++ b/i18npool/inc/transliteration_OneToOne.hxx
@@ -31,28 +31,28 @@ class transliteration_OneToOne : public transliteration_commonclass
public:
OUString SAL_CALL
transliterate( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 >& offset )
- throw(com::sun::star::uno::RuntimeException);
+ throw(com::sun::star::uno::RuntimeException, std::exception);
sal_Unicode SAL_CALL
transliterateChar2Char( sal_Unicode inChar)
throw(com::sun::star::uno::RuntimeException,
- com::sun::star::i18n::MultipleCharsOutputException);
+ com::sun::star::i18n::MultipleCharsOutputException, std::exception);
// Methods which are shared.
- sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException);
+ sal_Int16 SAL_CALL getType() throw(com::sun::star::uno::RuntimeException, std::exception);
OUString SAL_CALL
folding( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 >& offset)
- throw(com::sun::star::uno::RuntimeException);
+ throw(com::sun::star::uno::RuntimeException, std::exception);
sal_Bool SAL_CALL
equals( const OUString& str1, sal_Int32 pos1, sal_Int32 nCount1, sal_Int32& nMatch1,
const OUString& str2, sal_Int32 pos2, sal_Int32 nCount2, sal_Int32& nMatch2 )
- throw(com::sun::star::uno::RuntimeException);
+ throw(com::sun::star::uno::RuntimeException, std::exception);
com::sun::star::uno::Sequence< OUString > SAL_CALL
transliterateRange( const OUString& str1, const OUString& str2 )
- throw(com::sun::star::uno::RuntimeException);
+ throw(com::sun::star::uno::RuntimeException, std::exception);
protected:
TransFunc func;
@@ -66,11 +66,11 @@ public: \
name (); \
OUString SAL_CALL \
transliterate( const OUString& inStr, sal_Int32 startPos, sal_Int32 nCount, com::sun::star::uno::Sequence< sal_Int32 >& offset ) \
- throw(com::sun::star::uno::RuntimeException); \
+ throw(com::sun::star::uno::RuntimeException, std::exception); \
sal_Unicode SAL_CALL \
transliterateChar2Char( sal_Unicode inChar) \
throw(com::sun::star::uno::RuntimeException, \
- com::sun::star::i18n::MultipleCharsOutputException); \
+ com::sun::star::i18n::MultipleCharsOutputException, std::exception); \
};
#if defined( TRANSLITERATION_fullwidthToHalfwidth ) || defined( TRANSLITERATION_ALL )