summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-28 21:08:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 21:10:25 +0100
commit565e135bf6750408f4155b03e90c943fcf944a9d (patch)
tree93ec79101f4659f5ebad07110f8da4564bc94b17 /sc
parent3b35c0017860cefa4b658f9ec14134c3fbe3d02f (diff)
coverity#1308565 Uncaught exception
Change-Id: I961169b4da3daf34adc338ca913dab6f5c1edfae
Diffstat (limited to 'sc')
-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 0c4cacd19028..ece8b75245ca 100644
--- a/sc/source/ui/Accessibility/AccessibleCellBase.cxx
+++ b/sc/source/ui/Accessibility/AccessibleCellBase.cxx
@@ -448,7 +448,7 @@ OUString SAL_CALL ScAccessibleCellBase::getShadowAttrs()
#include <com/sun/star/table/BorderLine.hpp>
OUString SAL_CALL ScAccessibleCellBase::getBorderAttrs()
- 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 0d0b8241a516..8037f1fe382b 100644
--- a/sc/source/ui/inc/AccessibleCellBase.hxx
+++ b/sc/source/ui/inc/AccessibleCellBase.hxx
@@ -145,7 +145,7 @@ protected:
OUString SAL_CALL getShadowAttrs()
throw (::com::sun::star::uno::RuntimeException, std::exception);
OUString SAL_CALL getBorderAttrs()
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
public:
const ScAddress& GetCellAddress() const { return maCellAddress; }
bool IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder);