summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-28 20:59:48 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 20:59:48 +0100
commit318b31481b31f063cc18ae4a305831284c225f6c (patch)
tree97c45ae92f50dd2742cc39e311d11908b2010636 /reportdesign
parentbcb055fb1a230379bead940ca496c0b272683ce2 (diff)
coverity#1308554 Uncaught exception
Change-Id: I907dfd51b224b3bd7579b96b169be27f29364cb2
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.cxx2
-rw-r--r--reportdesign/source/filter/xml/xmlfilter.hxx2
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 );