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

coverity#737607 Uncaught exception

Change-Id: Id3334108f0216f19219a7681e2e816f4d07420ea
üst ab67d083
...@@ -276,11 +276,12 @@ public: ...@@ -276,11 +276,12 @@ public:
throw(::com::sun::star::uno::RuntimeException); throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
const ::com::sun::star::uno::Any& aValue ) const ::com::sun::star::uno::Any& aValue )
throw(::com::sun::star::beans::UnknownPropertyException, throw (::com::sun::star::beans::UnknownPropertyException,
::com::sun::star::beans::PropertyVetoException, ::com::sun::star::beans::PropertyVetoException,
::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::lang::WrappedTargetException, ::com::sun::star::lang::WrappedTargetException,
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException,
std::exception);
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,
......
...@@ -1314,9 +1314,9 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScEditFieldObj::getPropertySetI ...@@ -1314,9 +1314,9 @@ uno::Reference<beans::XPropertySetInfo> SAL_CALL ScEditFieldObj::getPropertySetI
void SAL_CALL ScEditFieldObj::setPropertyValue( void SAL_CALL ScEditFieldObj::setPropertyValue(
const OUString& aPropertyName, const uno::Any& aValue ) const OUString& aPropertyName, const uno::Any& aValue )
throw(beans::UnknownPropertyException, beans::PropertyVetoException, throw (beans::UnknownPropertyException, beans::PropertyVetoException,
lang::IllegalArgumentException, lang::WrappedTargetException, lang::IllegalArgumentException, lang::WrappedTargetException,
uno::RuntimeException) uno::RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
if (aPropertyName == SC_UNONAME_ANCHOR) if (aPropertyName == SC_UNONAME_ANCHOR)
......
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