diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-10 12:11:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-10 18:02:49 +0200 |
commit | 0db4cad99ff3746cc39f106a32bf2642628e336b (patch) | |
tree | 216a02fb7ce59d27b1b78faeea77987ac789f446 /svx | |
parent | 8730202879bbf1423c516ef9a99d34882e44c11c (diff) |
SvxGraphCtrlAccessibleContext 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: I4735bb086df297baff3b066a69e817e365007ba5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156791
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/inc/GraphCtlAccessibleContext.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/inc/GraphCtlAccessibleContext.hxx b/svx/source/inc/GraphCtlAccessibleContext.hxx index 094d9bd18ba5..3e328e9f89a3 100644 --- a/svx/source/inc/GraphCtlAccessibleContext.hxx +++ b/svx/source/inc/GraphCtlAccessibleContext.hxx @@ -21,7 +21,7 @@ #ifndef INCLUDED_SVX_SOURCE_INC_GRAPHCTLACCESSIBLECONTEXT_HXX #define INCLUDED_SVX_SOURCE_INC_GRAPHCTLACCESSIBLECONTEXT_HXX -#include <cppuhelper/compbase7.hxx> +#include <cppuhelper/compbase.hxx> #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/accessibility/XAccessibleComponent.hpp> @@ -57,7 +57,7 @@ class SdrView; <code>AccessibleContext</code> service. */ -typedef ::cppu::WeakAggComponentImplHelper7< +typedef ::cppu::WeakComponentImplHelper< css::accessibility::XAccessible, css::accessibility::XAccessibleComponent, css::accessibility::XAccessibleContext, |