summaryrefslogtreecommitdiff
path: root/i18npool/inc/indexentrysupplier_common.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'i18npool/inc/indexentrysupplier_common.hxx')
-rw-r--r--i18npool/inc/indexentrysupplier_common.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/i18npool/inc/indexentrysupplier_common.hxx b/i18npool/inc/indexentrysupplier_common.hxx
index df54320a4f83..18cbb07c4aa0 100644
--- a/i18npool/inc/indexentrysupplier_common.hxx
+++ b/i18npool/inc/indexentrysupplier_common.hxx
@@ -42,50 +42,50 @@ public:
~IndexEntrySupplier_Common();
virtual com::sun::star::uno::Sequence < com::sun::star::lang::Locale > SAL_CALL getLocaleList()
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual com::sun::star::uno::Sequence < OUString > SAL_CALL getAlgorithmList(
const com::sun::star::lang::Locale& rLocale )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL usePhoneticEntry(
const com::sun::star::lang::Locale& rLocale )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getPhoneticCandidate( const OUString& IndexEntry,
const com::sun::star::lang::Locale& rLocale )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Bool SAL_CALL loadAlgorithm(
const com::sun::star::lang::Locale& rLocale,
const OUString& SortAlgorithm, sal_Int32 collatorOptions )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getIndexKey( const OUString& IndexEntry,
const OUString& PhoneticEntry, const com::sun::star::lang::Locale& rLocale )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Int16 SAL_CALL compareIndexEntry( const OUString& IndexEntry1,
const OUString& PhoneticEntry1, const com::sun::star::lang::Locale& rLocale1,
const OUString& IndexEntry2, const OUString& PhoneticEntry2,
const com::sun::star::lang::Locale& rLocale2 )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getIndexCharacter( const OUString& rIndexEntry,
const com::sun::star::lang::Locale& rLocale, const OUString& rSortAlgorithm )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
virtual OUString SAL_CALL getIndexFollowPageWord( sal_Bool MorePages,
const com::sun::star::lang::Locale& rLocale )
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
//XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName)
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw( com::sun::star::uno::RuntimeException );
+ throw( com::sun::star::uno::RuntimeException, std::exception );
protected:
const sal_Char *implementationName;