diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:24:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:56:01 +0100 |
commit | b3fdb90d94a96e6c3c309b8ff39a79be51461277 (patch) | |
tree | 5d88eb2f8bd5e3c4dc1ce999ae01eab5742f2f80 /sd | |
parent | 5f0763edc473d0d062910a4722efa0caf9242c0f (diff) |
coverity#1308545 Uncaught exception
Change-Id: Ic2f04532680f0742ea11ab793fe2366d55cc7376
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/accessibility/AccessiblePresentationShape.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/AccessiblePresentationShape.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePresentationShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationShape.cxx index 90c8dfc49122..2d91b018f623 100644 --- a/sd/source/ui/accessibility/AccessiblePresentationShape.cxx +++ b/sd/source/ui/accessibility/AccessiblePresentationShape.cxx @@ -55,7 +55,7 @@ OUString SAL_CALL /// Set this object's name if is different to the current name. OUString AccessiblePresentationShape::CreateAccessibleBaseName() - throw (::com::sun::star::uno::RuntimeException) + throw (::com::sun::star::uno::RuntimeException, std::exception) { OUString sName; diff --git a/sd/source/ui/inc/AccessiblePresentationShape.hxx b/sd/source/ui/inc/AccessiblePresentationShape.hxx index 9088fc5229fd..ddf5b39ffa45 100644 --- a/sd/source/ui/inc/AccessiblePresentationShape.hxx +++ b/sd/source/ui/inc/AccessiblePresentationShape.hxx @@ -49,7 +49,7 @@ public: /// Create a name string that contains the accessible name. virtual OUString CreateAccessibleBaseName () - throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; /// Create a description string that contains the accessible description. virtual OUString |