diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 16:37:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:55:47 +0100 |
commit | 9e8e75db96a5f4e2aa5fb11b5c28ba7edfcd97dc (patch) | |
tree | 9bb11639b314c5150bd444e7fd06033f13e1a519 /svx | |
parent | 3cf45651653a49639e30ddb629bfd72cdf53e0d6 (diff) |
coverity#1308509 Uncaught exception
Change-Id: I6313447f6b62e5ab2a233bd418508afb84b9473b
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/AccessibleControlShape.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/svx/source/accessibility/AccessibleControlShape.cxx b/svx/source/accessibility/AccessibleControlShape.cxx index a9215eb20c0c..550e019ae7bb 100644 --- a/svx/source/accessibility/AccessibleControlShape.cxx +++ b/svx/source/accessibility/AccessibleControlShape.cxx @@ -325,12 +325,9 @@ OUString AccessibleControlShape::CreateAccessibleBaseName() throw (RuntimeExcept return sName; } - - - OUString AccessibleControlShape::CreateAccessibleDescription() - throw (RuntimeException) + throw (RuntimeException, std::exception) { DescriptionGenerator aDG (mxShape); ShapeTypeId nShapeType = ShapeTypeHandler::Instance().GetTypeId (mxShape); |