diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 14:56:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-09 13:35:26 +0200 |
commit | b999d4c53c2a7e90576c402fed38039856f97348 (patch) | |
tree | 1e3f8f29b0f38a456a89bbc55dcd2a20cfc46232 /svgio | |
parent | 43ad56252d788dd1e7f4a14d07662e5b1854adee (diff) |
XSvgParser does not need to implement XAggreggation
Checked on jenkins using 'make check' and
+void SAL_CALL setDelegator(css::uno::Reference<css::uno::XInterface> const &) final { assert(false); }
Change-Id: Id392a4fc3ddf34ce1fa2b66eb1e509e05184e50c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156721
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svguno/xsvgparser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/source/svguno/xsvgparser.cxx b/svgio/source/svguno/xsvgparser.cxx index fd2f5d3ddff0..8c216821b486 100644 --- a/svgio/source/svguno/xsvgparser.cxx +++ b/svgio/source/svguno/xsvgparser.cxx @@ -23,7 +23,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <com/sun/star/xml/sax/XParser.hpp> #include <com/sun/star/xml/sax/Parser.hpp> @@ -43,7 +43,7 @@ namespace svgio::svgreader { namespace { - class XSvgParser : public ::cppu::WeakAggImplHelper2< graphic::XSvgParser, lang::XServiceInfo > + class XSvgParser : public ::cppu::WeakImplHelper< graphic::XSvgParser, lang::XServiceInfo > { private: std::shared_ptr<SvgDrawVisitor> mpVisitor; |