svgio/source/svguno/xsvgparser.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b999d4c53c2a7e90576c402fed38039856f97348
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Fri Sep 8 14:56:41 2023 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sat Sep 9 13:35:26 2023 +0200

    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.gran...@collabora.co.uk>

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;

Reply via email to