diff options
Diffstat (limited to 'svgio/source/svguno/xsvgparser.cxx')
-rw-r--r-- | svgio/source/svguno/xsvgparser.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx index c4e8d5ce3c14..15947a85f13c 100644 --- a/svgio/source/svguno/xsvgparser.cxx +++ b/svgio/source/svguno/xsvgparser.cxx @@ -54,12 +54,12 @@ namespace svgio // XSvgParser virtual uno::Sequence< uno::Reference< ::graphic::XPrimitive2D > > SAL_CALL getDecomposition( const uno::Reference< ::io::XInputStream >& xSVGStream, - const OUString& aAbsolutePath) throw (uno::RuntimeException, std::exception) override; + const OUString& aAbsolutePath) override; // XServiceInfo - virtual OUString SAL_CALL getImplementationName() throw(uno::RuntimeException, std::exception) override; - virtual sal_Bool SAL_CALL supportsService(const OUString&) throw(uno::RuntimeException, std::exception) override; - virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(uno::RuntimeException, std::exception) override; + virtual OUString SAL_CALL getImplementationName() override; + virtual sal_Bool SAL_CALL supportsService(const OUString&) override; + virtual uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override; }; } // end of namespace svgreader } // end of namespace svgio @@ -98,7 +98,7 @@ namespace svgio uno::Sequence< uno::Reference< ::graphic::XPrimitive2D > > XSvgParser::getDecomposition( const uno::Reference< ::io::XInputStream >& xSVGStream, - const OUString& aAbsolutePath ) throw (uno::RuntimeException, std::exception) + const OUString& aAbsolutePath ) { drawinglayer::primitive2d::Primitive2DContainer aRetval; @@ -163,17 +163,17 @@ namespace svgio return comphelper::containerToSequence(aRetval); } - OUString SAL_CALL XSvgParser::getImplementationName() throw(uno::RuntimeException, std::exception) + OUString SAL_CALL XSvgParser::getImplementationName() { return(XSvgParser_getImplementationName()); } - sal_Bool SAL_CALL XSvgParser::supportsService(const OUString& rServiceName) throw(uno::RuntimeException, std::exception) + sal_Bool SAL_CALL XSvgParser::supportsService(const OUString& rServiceName) { return cppu::supportsService(this, rServiceName); } - uno::Sequence< OUString > SAL_CALL XSvgParser::getSupportedServiceNames() throw(uno::RuntimeException, std::exception) + uno::Sequence< OUString > SAL_CALL XSvgParser::getSupportedServiceNames() { return XSvgParser_getSupportedServiceNames(); } |