summaryrefslogtreecommitdiff
path: root/linguistic/source/lngopt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/lngopt.cxx')
-rw-r--r--linguistic/source/lngopt.cxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx
index 7dbf3318f37d..036733d48130 100644
--- a/linguistic/source/lngopt.cxx
+++ b/linguistic/source/lngopt.cxx
@@ -222,7 +222,7 @@ Reference< XInterface > SAL_CALL LinguProps_CreateInstance(
}
Reference< XPropertySetInfo > SAL_CALL LinguProps::getPropertySetInfo()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -234,7 +234,7 @@ Reference< XPropertySetInfo > SAL_CALL LinguProps::getPropertySetInfo()
void SAL_CALL LinguProps::setPropertyValue(
const OUString& rPropertyName, const Any& rValue )
throw(UnknownPropertyException, PropertyVetoException,
- IllegalArgumentException, WrappedTargetException, RuntimeException)
+ IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -252,7 +252,7 @@ void SAL_CALL LinguProps::setPropertyValue(
}
Any SAL_CALL LinguProps::getPropertyValue( const OUString& rPropertyName )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -270,7 +270,7 @@ Any SAL_CALL LinguProps::getPropertyValue( const OUString& rPropertyName )
void SAL_CALL LinguProps::addPropertyChangeListener(
const OUString& rPropertyName,
const Reference< XPropertyChangeListener >& rxListener )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -285,7 +285,7 @@ void SAL_CALL LinguProps::addPropertyChangeListener(
void SAL_CALL LinguProps::removePropertyChangeListener(
const OUString& rPropertyName,
const Reference< XPropertyChangeListener >& rxListener )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -300,21 +300,21 @@ void SAL_CALL LinguProps::removePropertyChangeListener(
void SAL_CALL LinguProps::addVetoableChangeListener(
const OUString& /*rPropertyName*/,
const Reference< XVetoableChangeListener >& /*xListener*/ )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
void SAL_CALL LinguProps::removeVetoableChangeListener(
const OUString& /*rPropertyName*/,
const Reference< XVetoableChangeListener >& /*xListener*/ )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
}
void SAL_CALL LinguProps::setFastPropertyValue( sal_Int32 nHandle, const Any& rValue )
throw(UnknownPropertyException, PropertyVetoException,
- IllegalArgumentException, WrappedTargetException, RuntimeException)
+ IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -329,7 +329,7 @@ void SAL_CALL LinguProps::setFastPropertyValue( sal_Int32 nHandle, const Any& rV
Any SAL_CALL LinguProps::getFastPropertyValue( sal_Int32 nHandle )
- throw(UnknownPropertyException, WrappedTargetException, RuntimeException)
+ throw(UnknownPropertyException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -340,7 +340,7 @@ Any SAL_CALL LinguProps::getFastPropertyValue( sal_Int32 nHandle )
Sequence< PropertyValue > SAL_CALL
LinguProps::getPropertyValues()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -365,7 +365,7 @@ Sequence< PropertyValue > SAL_CALL
void SAL_CALL
LinguProps::setPropertyValues( const Sequence< PropertyValue >& rProps )
throw(UnknownPropertyException, PropertyVetoException,
- IllegalArgumentException, WrappedTargetException, RuntimeException)
+ IllegalArgumentException, WrappedTargetException, RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -380,7 +380,7 @@ void SAL_CALL
void SAL_CALL
LinguProps::dispose()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -400,7 +400,7 @@ void SAL_CALL
void SAL_CALL
LinguProps::addEventListener( const Reference< XEventListener >& rxListener )
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -410,7 +410,7 @@ void SAL_CALL
void SAL_CALL
LinguProps::removeEventListener( const Reference< XEventListener >& rxListener )
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
@@ -423,7 +423,7 @@ void SAL_CALL
// XServiceInfo
OUString SAL_CALL LinguProps::getImplementationName()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return getImplementationName_Static();
@@ -431,14 +431,14 @@ OUString SAL_CALL LinguProps::getImplementationName()
// XServiceInfo
sal_Bool SAL_CALL LinguProps::supportsService( const OUString& ServiceName )
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
return cppu::supportsService(this, ServiceName);
}
// XServiceInfo
uno::Sequence< OUString > SAL_CALL LinguProps::getSupportedServiceNames()
- throw(RuntimeException)
+ throw(RuntimeException, std::exception)
{
MutexGuard aGuard( GetLinguMutex() );
return getSupportedServiceNames_Static();