comphelper/source/container/enumerablemap.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 76ea287c040dcfc2fe71b0588e1701cfe1ae6940
Author:     Noel Grandin <noelgran...@gmail.com>
AuthorDate: Sun Sep 10 16:55:07 2023 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sun Sep 10 20:42:48 2023 +0200

    EnumerableMap 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: I98b05a5bc83e3a747ffc45909ca3de4969d4e187
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156797
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/comphelper/source/container/enumerablemap.cxx 
b/comphelper/source/container/enumerablemap.cxx
index 6ca7c36d2d25..ae78223a20fe 100644
--- a/comphelper/source/container/enumerablemap.cxx
+++ b/comphelper/source/container/enumerablemap.cxx
@@ -31,7 +31,7 @@
 #include <com/sun/star/lang/XServiceInfo.hpp>
 #include <com/sun/star/uno/XComponentContext.hpp>
 
-#include <cppuhelper/compbase3.hxx>
+#include <cppuhelper/compbase.hxx>
 #include <cppuhelper/implbase.hxx>
 #include <cppuhelper/supportsservice.hxx>
 #include <typelib/typedescription.hxx>
@@ -143,7 +143,7 @@ namespace comphelper
 
     // EnumerableMap
 
-    typedef ::cppu::WeakAggComponentImplHelper3 <   XInitialization
+    typedef ::cppu::WeakComponentImplHelper <   XInitialization
                                                 ,   XEnumerableMap
                                                 ,   XServiceInfo
                                                 > Map_IFace;

Reply via email to