diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 20:59:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 20:59:48 +0100 |
commit | 318b31481b31f063cc18ae4a305831284c225f6c (patch) | |
tree | 97c45ae92f50dd2742cc39e311d11908b2010636 /reportdesign/source | |
parent | bcb055fb1a230379bead940ca496c0b272683ce2 (diff) |
coverity#1308554 Uncaught exception
Change-Id: I907dfd51b224b3bd7579b96b169be27f29364cb2
Diffstat (limited to 'reportdesign/source')
-rw-r--r-- | reportdesign/source/filter/xml/xmlfilter.cxx | 2 | ||||
-rw-r--r-- | reportdesign/source/filter/xml/xmlfilter.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/filter/xml/xmlfilter.cxx b/reportdesign/source/filter/xml/xmlfilter.cxx index dca562b6a8f3..f23d38bd7cdc 100644 --- a/reportdesign/source/filter/xml/xmlfilter.cxx +++ b/reportdesign/source/filter/xml/xmlfilter.cxx @@ -422,7 +422,7 @@ sal_Bool SAL_CALL ORptFilter::filter( const Sequence< PropertyValue >& rDescript } bool ORptFilter::implImport( const Sequence< PropertyValue >& rDescriptor ) - throw (RuntimeException) + throw (RuntimeException, std::exception) { OUString sFileName; uno::Reference< embed::XStorage > xStorage; diff --git a/reportdesign/source/filter/xml/xmlfilter.hxx b/reportdesign/source/filter/xml/xmlfilter.hxx index 9c430569791a..66a601549d50 100644 --- a/reportdesign/source/filter/xml/xmlfilter.hxx +++ b/reportdesign/source/filter/xml/xmlfilter.hxx @@ -98,7 +98,7 @@ private: Reference<XReportDefinition> m_xReportDefinition; ::boost::shared_ptr<rptui::OReportModel> m_pReportModel; - bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException); + bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException, std::exception); SvXMLImportContext* CreateStylesContext(const OUString& rLocalName, const Reference< XAttributeList>& xAttrList, bool bIsAutoStyle ); |