coverity#738262 Uncaught exception
Change-Id: I366f41afdad4f1ef38506d5d20f4293c3dde2d68
This commit is contained in:
@@ -364,11 +364,20 @@ public:
|
||||
virtual void SAL_CALL sort(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& xDescriptor) throw( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
//XAutoFormattable
|
||||
virtual void SAL_CALL autoFormat(const OUString& aName) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
|
||||
virtual void SAL_CALL autoFormat(const OUString& aName)
|
||||
throw (::com::sun::star::lang::IllegalArgumentException,
|
||||
::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
|
||||
//XPropertySet
|
||||
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 )
|
||||
throw (::com::sun::star::beans::UnknownPropertyException,
|
||||
::com::sun::star::lang::WrappedTargetException,
|
||||
|
@@ -1361,9 +1361,13 @@ uno::Reference< beans::XPropertySetInfo > SwXTextTableRow::getPropertySetInfo(v
|
||||
return xRef;
|
||||
}
|
||||
|
||||
void SwXTextTableRow::setPropertyValue(const OUString& rPropertyName,
|
||||
const uno::Any& aValue)
|
||||
throw( beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException )
|
||||
void SwXTextTableRow::setPropertyValue(const OUString& rPropertyName, const uno::Any& aValue)
|
||||
throw (beans::UnknownPropertyException,
|
||||
beans::PropertyVetoException,
|
||||
lang::IllegalArgumentException,
|
||||
lang::WrappedTargetException,
|
||||
uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
SolarMutexGuard aGuard;
|
||||
SwFrmFmt* pFmt = GetFrmFmt();
|
||||
@@ -3023,7 +3027,9 @@ void SwXTextTable::sort(const uno::Sequence< beans::PropertyValue >& rDescriptor
|
||||
}
|
||||
}
|
||||
|
||||
void SwXTextTable::autoFormat(const OUString& aName) throw( lang::IllegalArgumentException, uno::RuntimeException )
|
||||
void SwXTextTable::autoFormat(const OUString& aName)
|
||||
throw (lang::IllegalArgumentException, uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
SolarMutexGuard aGuard;
|
||||
SwFrmFmt* pFmt = GetFrmFmt();
|
||||
@@ -3317,7 +3323,8 @@ void SwXTextTable::setPropertyValue(const OUString& rPropertyName, const uno::An
|
||||
uno::Any SwXTextTable::getPropertyValue(const OUString& rPropertyName)
|
||||
throw (beans::UnknownPropertyException,
|
||||
lang::WrappedTargetException,
|
||||
uno::RuntimeException)
|
||||
uno::RuntimeException,
|
||||
std::exception)
|
||||
{
|
||||
SolarMutexGuard aGuard;
|
||||
uno::Any aRet;
|
||||
@@ -3813,7 +3820,7 @@ uno::Reference< table::XCell > SwXCellRange::getCellByPosition(sal_Int32 nColum
|
||||
|
||||
uno::Reference< table::XCellRange > SwXCellRange::getCellRangeByPosition(
|
||||
sal_Int32 nLeft, sal_Int32 nTop, sal_Int32 nRight, sal_Int32 nBottom)
|
||||
throw (uno::RuntimeException, lang::IndexOutOfBoundsException
|
||||
throw (uno::RuntimeException, lang::IndexOutOfBoundsException,
|
||||
std::exception)
|
||||
{
|
||||
SolarMutexGuard aGuard;
|
||||
|
Reference in New Issue
Block a user