Kaydet (Commit) 9e8e75db authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1308509 Uncaught exception

Change-Id: I6313447f6b62e5ab2a233bd418508afb84b9473b
üst 3cf45651
...@@ -127,7 +127,7 @@ protected: ...@@ -127,7 +127,7 @@ protected:
/// Create a description string that contains the accessible description. /// Create a description string that contains the accessible description.
virtual OUString virtual OUString
CreateAccessibleDescription( ) CreateAccessibleDescription( )
throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
#ifdef DBG_UTIL #ifdef DBG_UTIL
/// Set the specified state /// Set the specified state
......
...@@ -325,12 +325,9 @@ OUString AccessibleControlShape::CreateAccessibleBaseName() throw (RuntimeExcept ...@@ -325,12 +325,9 @@ OUString AccessibleControlShape::CreateAccessibleBaseName() throw (RuntimeExcept
return sName; return sName;
} }
OUString OUString
AccessibleControlShape::CreateAccessibleDescription() AccessibleControlShape::CreateAccessibleDescription()
throw (RuntimeException) throw (RuntimeException, std::exception)
{ {
DescriptionGenerator aDG (mxShape); DescriptionGenerator aDG (mxShape);
ShapeTypeId nShapeType = ShapeTypeHandler::Instance().GetTypeId (mxShape); ShapeTypeId nShapeType = ShapeTypeHandler::Instance().GetTypeId (mxShape);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment