summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-29 09:11:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-29 09:43:33 +0100
commit5e1206f0925b4dddcdede41df7d897b4759813ad (patch)
tree2b817d0c8045a4a5b3643077c3a691a2a261776c /sd
parentcoverity#1308570 Uncaught exception (diff)
downloadcore-5e1206f0925b4dddcdede41df7d897b4759813ad.tar.gz
core-5e1206f0925b4dddcdede41df7d897b4759813ad.zip
coverity#1308571 Uncaught exception
Change-Id: Ib844cbd5c5d7be28e4ee2922caf06fb43c7b8a46
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx2
-rw-r--r--sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx
index 8d63fbec2b41..b41b1a07aa99 100644
--- a/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx
+++ b/sd/source/ui/accessibility/AccessiblePresentationGraphicShape.cxx
@@ -76,7 +76,7 @@ OUString
OUString
AccessiblePresentationGraphicShape::CreateAccessibleDescription()
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
// return createAccessibleName ();
DescriptionGenerator aDG (mxShape);
diff --git a/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx b/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx
index cee2b8d66365..9dc504f06abe 100644
--- a/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx
+++ b/sd/source/ui/inc/AccessiblePresentationGraphicShape.hxx
@@ -55,7 +55,7 @@ public:
/// Create a description string that contains the accessible description.
virtual OUString
CreateAccessibleDescription ()
- throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// Return this object's role.
virtual sal_Int16 SAL_CALL getAccessibleRole () throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};