diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 16:51:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:55:50 +0100 |
commit | f79f9f172599ebd7fcbad3f9901affe138a30f03 (patch) | |
tree | 0a7b96d159f9fe25ba0af7fc73ba516de1304413 | |
parent | 4c15726253e178edbcdccf2c2ecca1e1c232f968 (diff) |
coverity#1308517 Uncaught exception
Change-Id: I844e6eea6253833d08fbfaa23e32bc40b206ecdd
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleCellBase.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessibleCellBase.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleCellBase.cxx b/sc/source/ui/Accessibility/AccessibleCellBase.cxx index c50a46ed889d..e3171d3a4a82 100644 --- a/sc/source/ui/Accessibility/AccessibleCellBase.cxx +++ b/sc/source/ui/Accessibility/AccessibleCellBase.cxx @@ -365,7 +365,7 @@ OUString SAL_CALL ScAccessibleCellBase::GetNote() #include <com/sun/star/table/ShadowFormat.hpp> OUString SAL_CALL ScAccessibleCellBase::getShadowAttrs() - throw (::com::sun::star::uno::RuntimeException) + throw (::com::sun::star::uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; IsObjectValid(); diff --git a/sc/source/ui/inc/AccessibleCellBase.hxx b/sc/source/ui/inc/AccessibleCellBase.hxx index 3094541c0af4..c7234b48d605 100644 --- a/sc/source/ui/inc/AccessibleCellBase.hxx +++ b/sc/source/ui/inc/AccessibleCellBase.hxx @@ -143,7 +143,7 @@ protected: OUString SAL_CALL GetAllDisplayNote() throw (::com::sun::star::uno::RuntimeException); OUString SAL_CALL getShadowAttrs() - throw (::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::RuntimeException, std::exception); OUString SAL_CALL getBorderAttrs() throw (::com::sun::star::uno::RuntimeException); public: |