diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 09:32:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 12:40:33 +0200 |
commit | 033959aae1744a7bc7315e9abd051805805b33a3 (patch) | |
tree | 87bc42be32d43d2c85bc65ea873b23c5c28ee624 /include | |
parent | 74895033b99ba8b1496dc71699f52402b6d3db11 (diff) |
SvUnoAttributeContainer 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: Iddfef9353c3a63547546e2db49083083d2dc74c4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156695
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/unoatrcn.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmloff/unoatrcn.hxx b/include/xmloff/unoatrcn.hxx index b09a06250215..454885c26641 100644 --- a/include/xmloff/unoatrcn.hxx +++ b/include/xmloff/unoatrcn.hxx @@ -31,12 +31,12 @@ #include <xmloff/xmlcnimp.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> extern css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance(); class XMLOFF_DLLPUBLIC SvUnoAttributeContainer final : - public ::cppu::WeakAggImplHelper2< + public ::cppu::WeakImplHelper< css::lang::XServiceInfo, css::container::XNameContainer > { |