include/xmloff/unoatrcn.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 033959aae1744a7bc7315e9abd051805805b33a3 Author: Noel Grandin <[email protected]> AuthorDate: Fri Sep 8 09:32:50 2023 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Fri Sep 8 12:40:33 2023 +0200 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 <[email protected]> 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 > {
