diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:50:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:13 +0000 |
commit | cdddbf1991c021e0ee433ed6371e1e7a83e6877a (patch) | |
tree | 40d7f6b3db8fa9bf1477f2e654b64489d7623c5d /include | |
parent | 02386ef8bcaeaca72eae56e15fe526aa9fc29b40 (diff) |
coverity#1079007 Uncaught exception
Change-Id: Ic4b1805809aa0a2a78007d5808fd8ae6097b080f
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlimp.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/xmloff/xmlimp.hxx b/include/xmloff/xmlimp.hxx index 2628e39fe466..5b5ee9a444da 100644 --- a/include/xmloff/xmlimp.hxx +++ b/include/xmloff/xmlimp.hxx @@ -197,8 +197,10 @@ public: // ::com::sun::star::xml::sax::XDocumentHandler virtual void SAL_CALL startDocument(void) throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException ); - virtual void SAL_CALL endDocument(void) - throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException ); + virtual void SAL_CALL endDocument() + throw(::com::sun::star::xml::sax::SAXException, + ::com::sun::star::uno::RuntimeException, + std::exception); 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 ); |