diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 14:00:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-09 15:41:18 +0200 |
commit | dc69edc50c8ccde2422d21d5b3899d08f7510574 (patch) | |
tree | a5a875b367d1d3f855625dbcf21ae506b2ae2514 /stoc/source/defaultregistry | |
parent | b7431e530145c543604cf02808e439feca034333 (diff) |
NestedRegistryImpl 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: I3eb7f69ab16bedbe32e457f67257393822dc90d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156718
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc/source/defaultregistry')
-rw-r--r-- | stoc/source/defaultregistry/defaultregistry.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stoc/source/defaultregistry/defaultregistry.cxx b/stoc/source/defaultregistry/defaultregistry.cxx index 689aed725795..815d7a6679c3 100644 --- a/stoc/source/defaultregistry/defaultregistry.cxx +++ b/stoc/source/defaultregistry/defaultregistry.cxx @@ -21,7 +21,6 @@ #include <comphelper/sequence.hxx> #include <cppuhelper/weak.hxx> #include <cppuhelper/implbase.hxx> -#include <cppuhelper/implbase4.hxx> #include <cppuhelper/supportsservice.hxx> #include <rtl/ref.hxx> @@ -41,7 +40,7 @@ using namespace osl; namespace { -class NestedRegistryImpl : public WeakAggImplHelper4 < XSimpleRegistry, XInitialization, XServiceInfo, XEnumerationAccess > +class NestedRegistryImpl : public WeakImplHelper < XSimpleRegistry, XInitialization, XServiceInfo, XEnumerationAccess > { public: NestedRegistryImpl( ); |