summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-25 13:19:12 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-25 14:27:43 +0000
commit9f4b335af20217d9d982ae92e946fe9b73cdfa61 (patch)
treedc03e34527e128b91bd7f950cca29d2fa9875505 /xmloff
parente337d2e11dc63568916b25ca996cbf629f60300d (diff)
coverity#738306 Uncaught exception
Change-Id: Id8b343993b22ceb83490c7f2d1f465a728ccb4fc
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 4c361e503fc9..46ec380a34da 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -466,8 +466,10 @@ sal_Int64 SAL_CALL SvXMLImport::getSomething( const uno::Sequence< sal_Int8 >& r
return 0;
}
-void SAL_CALL SvXMLImport::startDocument( void )
- throw( xml::sax::SAXException, uno::RuntimeException )
+void SAL_CALL SvXMLImport::startDocument()
+ throw (xml::sax::SAXException,
+ uno::RuntimeException,
+ std::exception)
{
SAL_INFO( "xmloff.core", "{ SvXMLImport::startDocument" );
if( !mxGraphicResolver.is() || !mxEmbeddedResolver.is() )