Kaydet (Commit) 31ed7bc8 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#737240 Uncaught exception

Change-Id: I9cff764c2ca451752f2343cedd26530bd9a0e9a7
üst 9a34c555
......@@ -81,8 +81,9 @@ class OReadImagesDocumentHandler : private ThreadHelpBase, // Struct for right
virtual void SAL_CALL startElement(
const OUString& aName,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &xAttribs)
throw( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );
throw (::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL endElement(const OUString& aName)
throw (::com::sun::star::xml::sax::SAXException,
......
......@@ -165,7 +165,9 @@ throw( SAXException, RuntimeException )
void SAL_CALL OReadImagesDocumentHandler::startElement(
const OUString& aName, const Reference< XAttributeList > &xAttribs )
throw( SAXException, RuntimeException )
throw(SAXException,
RuntimeException,
std::exception)
{
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