summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-17 09:43:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-17 15:19:51 +0100
commit8ba198465a7629d815c25d0ee9bf3cc30ceb2767 (patch)
tree4481335cbe146e9b97129c49e6ad6ad8883c4ac8 /sw
parentb3644b6a7015d37668b8b64cdce1d33b6da5b806 (diff)
coverity#1247640 Uncaught exception
Change-Id: Iccb18ddc9333b7812b747b142272f4394e4eca80
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/access/acccontext.cxx2
-rw-r--r--sw/source/core/access/acccontext.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/access/acccontext.cxx b/sw/source/core/access/acccontext.cxx
index a0126fc8950b..9f7b3bf81307 100644
--- a/sw/source/core/access/acccontext.cxx
+++ b/sw/source/core/access/acccontext.cxx
@@ -841,7 +841,7 @@ uno::Reference< XAccessible > SAL_CALL SwAccessibleContext::getAccessibleAtPoint
false: Use absolute mode.
*/
awt::Rectangle SAL_CALL SwAccessibleContext::getBoundsImpl(bool bRelative)
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
diff --git a/sw/source/core/access/acccontext.hxx b/sw/source/core/access/acccontext.hxx
index 49789295e820..dcc8c4c23689 100644
--- a/sw/source/core/access/acccontext.hxx
+++ b/sw/source/core/access/acccontext.hxx
@@ -185,7 +185,7 @@ protected:
virtual ::com::sun::star::awt::Rectangle SAL_CALL
getBoundsImpl(bool bRelative)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (css::uno::RuntimeException, std::exception);
// #i85634#
inline void NotRegisteredAtAccessibleMap()