diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-09 13:52:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-10 17:09:00 +0200 |
commit | 8730202879bbf1423c516ef9a99d34882e44c11c (patch) | |
tree | 6ae3ffe7b6d2b243cb08e70dedb8718b52971bc1 /vcl/source/components | |
parent | d9ecb98b3060dfc7f6291391792d1a3d73a282ba (diff) |
FontIdentificator 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: I13d3d34e202718894a50deb9dfa40041bdc5d25c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156771
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/components')
-rw-r--r-- | vcl/source/components/fontident.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/components/fontident.cxx b/vcl/source/components/fontident.cxx index 78d5703c5050..104981ad4366 100644 --- a/vcl/source/components/fontident.cxx +++ b/vcl/source/components/fontident.cxx @@ -33,7 +33,7 @@ #include <com/sun/star/awt/FontSlant.hpp> #include <com/sun/star/lang/XInitialization.hpp> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> using namespace ::com::sun::star::uno; @@ -46,7 +46,7 @@ namespace vcl namespace { -class FontIdentificator : public ::cppu::WeakAggImplHelper3< XMaterialHolder, XInitialization, XServiceInfo > +class FontIdentificator : public ::cppu::WeakImplHelper< XMaterialHolder, XInitialization, XServiceInfo > { Font m_aFont; public: |