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

coverity#737497 Uncaught exception

Change-Id: I1dc0acda818f1b520f74c282bdd17a195591e860
üst 146a5e95
...@@ -901,11 +901,12 @@ public: ...@@ -901,11 +901,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,
......
...@@ -3410,7 +3410,9 @@ Reference< XPropertySetInfo > ...@@ -3410,7 +3410,9 @@ Reference< XPropertySetInfo >
} }
void SAL_CALL ScDataPilotItemObj::setPropertyValue( const OUString& aPropertyName, const Any& aValue ) void SAL_CALL ScDataPilotItemObj::setPropertyValue( const OUString& aPropertyName, const Any& aValue )
throw(UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException) throw (UnknownPropertyException, PropertyVetoException,
IllegalArgumentException, WrappedTargetException,
RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
ScDPObject* pDPObj = 0; ScDPObject* pDPObj = 0;
......
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