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

coverity#737239 Uncaught exception

Change-Id: Ic9635e77e5fd4e356b30aac314c7438060b82a58
üst 24949f84
...@@ -85,8 +85,9 @@ class OReadImagesDocumentHandler : private ThreadHelpBase, // Struct for right ...@@ -85,8 +85,9 @@ class OReadImagesDocumentHandler : private ThreadHelpBase, // Struct for right
::com::sun::star::uno::RuntimeException ); ::com::sun::star::uno::RuntimeException );
virtual void SAL_CALL endElement(const OUString& aName) virtual void SAL_CALL endElement(const OUString& aName)
throw( ::com::sun::star::xml::sax::SAXException, throw (::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException ); ::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL characters(const OUString& aChars) virtual void SAL_CALL characters(const OUString& aChars)
throw( ::com::sun::star::xml::sax::SAXException, throw( ::com::sun::star::xml::sax::SAXException,
......
...@@ -497,7 +497,9 @@ throw( SAXException, RuntimeException ) ...@@ -497,7 +497,9 @@ throw( SAXException, RuntimeException )
} }
void SAL_CALL OReadImagesDocumentHandler::endElement(const OUString& aName) void SAL_CALL OReadImagesDocumentHandler::endElement(const OUString& aName)
throw( SAXException, RuntimeException ) throw(SAXException,
RuntimeException,
std::exception)
{ {
ResetableGuard aGuard( m_aLock ); ResetableGuard aGuard( m_aLock );
......
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