diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-25 13:55:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-25 13:55:03 +0000 |
commit | b777fc2fdceee42d1ff52b495425b5f69ce680f5 (patch) | |
tree | d0acd64f0060985beb95b6f11b5da3c9191c42fd /sc | |
parent | 71a0bb02fe9a3b144ccfe31ed45dedb67931dd02 (diff) |
coverity#1158359 Uncaught exception
Change-Id: I0428d5de262edde14950f7587803109e9a72fde7
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx | 5 | ||||
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleTableBase.cxx | 5 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessibleSpreadsheet.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessibleTableBase.hxx | 2 |
4 files changed, 6 insertions, 8 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx index d42034ef5e00..62e5e1c13017 100644 --- a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx +++ b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx @@ -1116,9 +1116,8 @@ void SAL_CALL } } -void SAL_CALL - ScAccessibleSpreadsheet::selectAllAccessibleChildren( ) - throw (uno::RuntimeException) +void SAL_CALL ScAccessibleSpreadsheet::selectAllAccessibleChildren( ) + throw (uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; IsObjectValid(); diff --git a/sc/source/ui/Accessibility/AccessibleTableBase.cxx b/sc/source/ui/Accessibility/AccessibleTableBase.cxx index 5737da255856..b22b35ecb176 100644 --- a/sc/source/ui/Accessibility/AccessibleTableBase.cxx +++ b/sc/source/ui/Accessibility/AccessibleTableBase.cxx @@ -422,9 +422,8 @@ void SAL_CALL { } -void SAL_CALL - ScAccessibleTableBase::selectAllAccessibleChildren( ) - throw (uno::RuntimeException) +void SAL_CALL ScAccessibleTableBase::selectAllAccessibleChildren() + throw (uno::RuntimeException, std::exception) { } diff --git a/sc/source/ui/inc/AccessibleSpreadsheet.hxx b/sc/source/ui/inc/AccessibleSpreadsheet.hxx index 5d22a8aafedc..1727dfd5278d 100644 --- a/sc/source/ui/inc/AccessibleSpreadsheet.hxx +++ b/sc/source/ui/inc/AccessibleSpreadsheet.hxx @@ -192,7 +192,7 @@ private: virtual void SAL_CALL selectAllAccessibleChildren( ) - throw (::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::RuntimeException, std::exception); virtual sal_Int32 SAL_CALL getSelectedAccessibleChildCount( ) diff --git a/sc/source/ui/inc/AccessibleTableBase.hxx b/sc/source/ui/inc/AccessibleTableBase.hxx index 7ad878d02eeb..7d64e3584d3f 100644 --- a/sc/source/ui/inc/AccessibleTableBase.hxx +++ b/sc/source/ui/inc/AccessibleTableBase.hxx @@ -269,7 +269,7 @@ public: virtual void SAL_CALL selectAllAccessibleChildren( ) - throw (::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::RuntimeException, std::exception); virtual sal_Int32 SAL_CALL getSelectedAccessibleChildCount( ) |