summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-28 16:56:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 17:55:52 +0100
commit7950fc0d049afba36ace8ef544df0358ea3c3e6c (patch)
tree7f4962b98686eb48b28cd1c7fcdd1eee2ca3289c
parent074c8f68df1fff02bde1b3e4a781ddae34feda3e (diff)
coverity#1308520 Uncaught exception
Change-Id: I38c832f75fc590af70db82642174bf636bddb0ad
-rw-r--r--sc/source/ui/Accessibility/AccessibleCellBase.cxx2
-rw-r--r--sc/source/ui/inc/AccessibleCellBase.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleCellBase.cxx b/sc/source/ui/Accessibility/AccessibleCellBase.cxx
index e3171d3a4a82..37edaada439d 100644
--- a/sc/source/ui/Accessibility/AccessibleCellBase.cxx
+++ b/sc/source/ui/Accessibility/AccessibleCellBase.cxx
@@ -206,7 +206,7 @@ sal_Int32
OUString SAL_CALL
ScAccessibleCellBase::createAccessibleDescription()
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
OUString sDescription = OUString(ScResId(STR_ACC_CELL_DESCR));
diff --git a/sc/source/ui/inc/AccessibleCellBase.hxx b/sc/source/ui/inc/AccessibleCellBase.hxx
index c7234b48d605..443428f73c3c 100644
--- a/sc/source/ui/inc/AccessibleCellBase.hxx
+++ b/sc/source/ui/inc/AccessibleCellBase.hxx
@@ -77,7 +77,7 @@ protected:
/// Return this object's description.
virtual OUString SAL_CALL
createAccessibleDescription()
- throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return the object's current name.
virtual OUString SAL_CALL