diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-11 12:09:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-11 15:33:47 +0200 |
commit | 89efaa6e770ccbc65c498f2a688c90a94a365a3d (patch) | |
tree | 74906416a9e146333a3b19ddb47917ae6f4b3023 /editeng | |
parent | f53ed5e832289560a75e685ededb66732fa16659 (diff) |
SvxSimpleUnoModel 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: I54b6d8224bd9d996781cfac6cf9846721a8c5d3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156818
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/inc/unomodel.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/inc/unomodel.hxx b/editeng/inc/unomodel.hxx index cfe5b59ee24b..9cfd0f0b420f 100644 --- a/editeng/inc/unomodel.hxx +++ b/editeng/inc/unomodel.hxx @@ -23,9 +23,9 @@ #include <com/sun/star/ucb/XAnyCompareFactory.hpp> #include <com/sun/star/style/XStyleFamiliesSupplier.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <cppuhelper/implbase4.hxx> +#include <cppuhelper/implbase.hxx> -class SvxSimpleUnoModel final : public cppu::WeakAggImplHelper4< +class SvxSimpleUnoModel final : public cppu::WeakImplHelper< css::frame::XModel, css::ucb::XAnyCompareFactory, css::style::XStyleFamiliesSupplier, |