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

coverity#738252 Uncaught exception

Change-Id: I9529a1d48c9c708ded67f83eb4d7777086618cb6
üst b1c70991
...@@ -449,7 +449,13 @@ public: ...@@ -449,7 +449,13 @@ public:
//XPropertySet //XPropertySet
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); virtual void SAL_CALL setPropertyValue(const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue)
throw (::com::sun::star::beans::UnknownPropertyException,
::com::sun::star::beans::PropertyVetoException,
::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::lang::WrappedTargetException,
::com::sun::star::uno::RuntimeException,
std::exception);
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(const OUString& PropertyName) virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue(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,
......
...@@ -3890,10 +3890,13 @@ uno::Reference< beans::XPropertySetInfo > SwXCellRange::getPropertySetInfo(void ...@@ -3890,10 +3890,13 @@ uno::Reference< beans::XPropertySetInfo > SwXCellRange::getPropertySetInfo(void
return xRef; return xRef;
} }
void SwXCellRange::setPropertyValue(const OUString& rPropertyName, void SwXCellRange::setPropertyValue(const OUString& rPropertyName, const uno::Any& aValue)
const uno::Any& aValue) throw( beans::UnknownPropertyException, throw (beans::UnknownPropertyException,
beans::PropertyVetoException, lang::IllegalArgumentException, beans::PropertyVetoException,
lang::WrappedTargetException, uno::RuntimeException ) lang::IllegalArgumentException,
lang::WrappedTargetException,
uno::RuntimeException,
std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
SwFrmFmt* pFmt = GetFrmFmt(); SwFrmFmt* pFmt = GetFrmFmt();
......
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