diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-10 19:40:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-11 11:46:10 +0200 |
commit | 8b08885042d93aa1e0884fe9197a161a36d54267 (patch) | |
tree | c99ec44322906744fd2d829c43f227b844baa7ed /accessibility/inc | |
parent | 1d50bbc8df0b9b1cad16bccc835f1aecfdf2abfb (diff) |
AccessibleIconChoiceCtrlEntry 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: I80459b404d610847395d2eae4d529a808c53f3d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156802
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'accessibility/inc')
-rw-r--r-- | accessibility/inc/extended/accessibleiconchoicectrlentry.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accessibility/inc/extended/accessibleiconchoicectrlentry.hxx b/accessibility/inc/extended/accessibleiconchoicectrlentry.hxx index 3a6c8bfdfdf7..b2430481e58c 100644 --- a/accessibility/inc/extended/accessibleiconchoicectrlentry.hxx +++ b/accessibility/inc/extended/accessibleiconchoicectrlentry.hxx @@ -27,7 +27,7 @@ #include <com/sun/star/accessibility/XAccessibleAction.hpp> #include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> -#include <cppuhelper/compbase8.hxx> +#include <cppuhelper/compbase.hxx> #include <cppuhelper/basemutex.hxx> #include <comphelper/accessibletexthelper.hxx> #include <tools/gen.hxx> @@ -42,7 +42,7 @@ namespace accessibility { - typedef ::cppu::WeakAggComponentImplHelper8< css::accessibility::XAccessible + typedef ::cppu::WeakComponentImplHelper< css::accessibility::XAccessible , css::accessibility::XAccessibleContext , css::accessibility::XAccessibleComponent , css::accessibility::XAccessibleEventBroadcaster |