summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-10 10:50:36 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-10 11:21:13 +0000
commitcdddbf1991c021e0ee433ed6371e1e7a83e6877a (patch)
tree40d7f6b3db8fa9bf1477f2e654b64489d7623c5d /xmloff
parent02386ef8bcaeaca72eae56e15fe526aa9fc29b40 (diff)
coverity#1079007 Uncaught exception
Change-Id: Ic4b1805809aa0a2a78007d5808fd8ae6097b080f
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmlimp.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx
index 001970b5597e..bb88bfbd4604 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -502,8 +502,10 @@ void SAL_CALL SvXMLImport::startDocument( void )
}
}
-void SAL_CALL SvXMLImport::endDocument( void )
- throw( xml::sax::SAXException, uno::RuntimeException)
+void SAL_CALL SvXMLImport::endDocument()
+ throw(xml::sax::SAXException,
+ uno::RuntimeException,
+ std::exception)
{
SAL_INFO( "xmloff.core", "} SvXMLImport::startDocument" );
// #i9518# All the stuff that accesses the document has to be done here, not in the dtor,