vcl/source/components/fontident.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 8730202879bbf1423c516ef9a99d34882e44c11c
Author:     Noel Grandin <noelgran...@gmail.com>
AuthorDate: Sat Sep 9 13:52:56 2023 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sun Sep 10 17:09:00 2023 +0200

    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.gran...@collabora.co.uk>

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:

Reply via email to