diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2023-09-10 16:51:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-11 12:05:52 +0200 |
commit | 8d98273dab1a31243801614ec4b07ac7f2e46349 (patch) | |
tree | 318d7da8bffc92adc663d0834374c41c31a36101 /svtools | |
parent | 888e20f8fadf570b8fa6d07a6cd208f2fa8921a1 (diff) |
SvtRulerAccessible 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: I49e2c013c82687b71d0b442662ca9de229d0dddb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156795
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/accessibleruler.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/accessibleruler.hxx b/svtools/source/control/accessibleruler.hxx index 1eb4ad77d541..ba03d0843a2b 100644 --- a/svtools/source/control/accessibleruler.hxx +++ b/svtools/source/control/accessibleruler.hxx @@ -27,7 +27,7 @@ #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <cppuhelper/interfacecontainer.h> -#include <cppuhelper/compbase5.hxx> +#include <cppuhelper/compbase.hxx> #include <cppuhelper/basemutex.hxx> #include <vcl/vclptr.hxx> @@ -35,7 +35,7 @@ namespace tools { class Rectangle; } class Ruler; -typedef ::cppu::WeakAggComponentImplHelper5< +typedef ::cppu::WeakComponentImplHelper< css::accessibility::XAccessible, css::accessibility::XAccessibleComponent, css::accessibility::XAccessibleContext, |