summaryrefslogtreecommitdiff
path: root/filter/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-02 08:35:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-02 11:39:31 +0100
commitdba9ab75eda92be9fa92aaedd241d2bb2835c96d (patch)
treecd74abe872e721ee4b79eeab83077f0668020134 /filter/source
parent39c2de683a3ffb116c49f089df00b73afb63383c (diff)
coverity#1309057 Uncaught exception
Change-Id: Idbb43eadaeed8e74e41b4da4f9b02d12ff755672
Diffstat (limited to 'filter/source')
-rw-r--r--filter/source/svg/svgexport.cxx2
-rw-r--r--filter/source/svg/svgfilter.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index 5012ed1a1aba..1227b97bed2b 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -523,7 +523,7 @@ bool EqualityBitmap::operator()( const ObjectRepresentation& rObjRep1,
bool SVGFilter::implExport( const Sequence< PropertyValue >& rDescriptor )
- throw (RuntimeException)
+ throw (RuntimeException, std::exception)
{
Reference< XComponentContext > xContext( ::comphelper::getProcessComponentContext() ) ;
Reference< XOutputStream > xOStm;
diff --git a/filter/source/svg/svgfilter.hxx b/filter/source/svg/svgfilter.hxx
index d19f8a957247..55b625344cfb 100644
--- a/filter/source/svg/svgfilter.hxx
+++ b/filter/source/svg/svgfilter.hxx
@@ -249,7 +249,7 @@ private:
bool implImport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException, std::exception);
- bool implExport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException);
+ bool implExport( const Sequence< PropertyValue >& rDescriptor ) throw (RuntimeException, std::exception);
static Reference< XWriter > implCreateExportDocumentHandler( const Reference< XOutputStream >& rxOStm );
bool implGetPagePropSet( const Reference< XDrawPage > & rxPage );