Kaydet (Commit) 687f46d6 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#737354 Uncaught exception

Change-Id: Iedbff972ef4fba9b0fa877db76a1e9b099223279
üst 4e95a50d
...@@ -163,9 +163,10 @@ public: ...@@ -163,9 +163,10 @@ public:
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(
const OUString& PropertyName ) const OUString& PropertyName )
throw(::com::sun::star::beans::UnknownPropertyException, throw (::com::sun::star::beans::UnknownPropertyException,
::com::sun::star::lang::WrappedTargetException, ::com::sun::star::lang::WrappedTargetException,
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
const ::com::sun::star::uno::Reference< const ::com::sun::star::uno::Reference<
::com::sun::star::beans::XPropertyChangeListener >& xListener ) ::com::sun::star::beans::XPropertyChangeListener >& xListener )
......
...@@ -600,8 +600,8 @@ void SAL_CALL ScSpreadsheetSettings::setPropertyValue( ...@@ -600,8 +600,8 @@ void SAL_CALL ScSpreadsheetSettings::setPropertyValue(
} }
uno::Any SAL_CALL ScSpreadsheetSettings::getPropertyValue( const OUString& aPropertyName ) uno::Any SAL_CALL ScSpreadsheetSettings::getPropertyValue( const OUString& aPropertyName )
throw(beans::UnknownPropertyException, lang::WrappedTargetException, throw (beans::UnknownPropertyException, lang::WrappedTargetException,
uno::RuntimeException) uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
OUString aString = aPropertyName; OUString aString = aPropertyName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment