summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2023-09-10 16:55:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-09-10 20:42:48 +0200
commit76ea287c040dcfc2fe71b0588e1701cfe1ae6940 (patch)
tree6b0f256e4803dd59d32bc5303bb6029d4c130f98
parent2b362ab651e197e4d96457503848504d9ed2a001 (diff)
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.grandin@collabora.co.uk>
-rw-r--r--comphelper/source/container/enumerablemap.cxx4
1 files changed, 2 insertions, 2 deletions
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;