diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-25 14:01:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-25 14:04:14 +0000 |
commit | cd1e7c75b7318ea482458e45cf91202067290a49 (patch) | |
tree | 5c5ade0da6442dfaafe8329d012ecc6adb62cc2f /sc/inc | |
parent | b777fc2fdceee42d1ff52b495425b5f69ce680f5 (diff) |
coverity#1158355 Uncaught exception
Change-Id: I60dff924402b026c1f5d678ce81889396a0f8bd8
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index 1f89aa614cc1..d039d490656c 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -227,7 +227,8 @@ protected: virtual void SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException); + ::com::sun::star::uno::RuntimeException, + std::exception); public: ScCellRangesBase(ScDocShell* pDocSh, const ScRange& rR); @@ -621,7 +622,8 @@ protected: virtual void SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException); + ::com::sun::star::uno::RuntimeException, + std::exception); ::com::sun::star::uno::Reference< ::com::sun::star::table::XCell > GetCellByPosition_Impl( sal_Int32 nColumn, sal_Int32 nRow ) @@ -1306,7 +1308,8 @@ protected: virtual void SetOnePropertyValue( const SfxItemPropertySimpleEntry* pEntry, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::lang::IllegalArgumentException, - ::com::sun::star::uno::RuntimeException); + ::com::sun::star::uno::RuntimeException, + std::exception); public: ScTableRowObj(ScDocShell* pDocSh, SCROW nRow, SCTAB nTab); |