diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-01-09 11:53:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-01-10 10:21:16 +0000 |
commit | f1d00da1bb16330bef9316a3e4f04506f9bb862f (patch) | |
tree | 2ffa787c0004e9b995ffa10cd495c121d3bf5dff /toolkit | |
parent | 71a479afb7e9762de930361e6089e23ab8d4af74 (diff) |
OAccessibleImplementationAccess was apparently effectively unused by now
...as there were no calls to its OAccessibleImplementationAccess::getUnoTunnelId
so no code apparently made use of that XUnoTunnel
Change-Id: I35d392999f1c28e81f7ff4bf395f63642eb17bce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145250
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/controls/accessiblecontrolcontext.hxx | 4 | ||||
-rw-r--r-- | toolkit/source/awt/vclxaccessiblecomponent.cxx | 3 | ||||
-rw-r--r-- | toolkit/source/controls/accessiblecontrolcontext.cxx | 3 |
3 files changed, 3 insertions, 7 deletions
diff --git a/toolkit/inc/controls/accessiblecontrolcontext.hxx b/toolkit/inc/controls/accessiblecontrolcontext.hxx index 14acfe6e3276..8cb168071fcc 100644 --- a/toolkit/inc/controls/accessiblecontrolcontext.hxx +++ b/toolkit/inc/controls/accessiblecontrolcontext.hxx @@ -20,7 +20,6 @@ #pragma once #include <comphelper/accessiblecomponenthelper.hxx> -#include <comphelper/accimplaccess.hxx> #include <comphelper/uno3.hxx> #include <com/sun/star/lang/XEventListener.hpp> #include <rtl/ref.hxx> @@ -48,8 +47,7 @@ namespace toolkit is being disposed.</p> */ class OAccessibleControlContext final - :public ::comphelper::OAccessibleImplementationAccess - ,public OAccessibleControlContext_Base + :public OAccessibleControlContext_Base ,public OAccessibleControlContext_IBase { public: diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx b/toolkit/source/awt/vclxaccessiblecomponent.cxx index 666ba75bde6a..26dcde5e1b01 100644 --- a/toolkit/source/awt/vclxaccessiblecomponent.cxx +++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx @@ -79,12 +79,11 @@ VCLXAccessibleComponent::~VCLXAccessibleComponent() DisconnectEvents(); } -IMPLEMENT_FORWARD_XINTERFACE3( VCLXAccessibleComponent, OAccessibleExtendedComponentHelper, OAccessibleImplementationAccess, VCLXAccessibleComponent_BASE ) +IMPLEMENT_FORWARD_XINTERFACE2( VCLXAccessibleComponent, OAccessibleExtendedComponentHelper, VCLXAccessibleComponent_BASE ) css::uno::Sequence< css::uno::Type > SAL_CALL VCLXAccessibleComponent::getTypes() { return ::comphelper::concatSequences( OAccessibleExtendedComponentHelper::getTypes(), - OAccessibleImplementationAccess::getTypes(), VCLXAccessibleComponent_BASE::getTypes() ); } diff --git a/toolkit/source/controls/accessiblecontrolcontext.cxx b/toolkit/source/controls/accessiblecontrolcontext.cxx index 7df9a0c7e34d..345e486db04d 100644 --- a/toolkit/source/controls/accessiblecontrolcontext.cxx +++ b/toolkit/source/controls/accessiblecontrolcontext.cxx @@ -59,12 +59,11 @@ namespace toolkit // (order matters: the first is the class name, the second is the class doing the ref counting) - IMPLEMENT_FORWARD_XINTERFACE3( OAccessibleControlContext, OAccessibleControlContext_Base, OAccessibleImplementationAccess, OAccessibleControlContext_IBase ) + IMPLEMENT_FORWARD_XINTERFACE2( OAccessibleControlContext, OAccessibleControlContext_Base, OAccessibleControlContext_IBase ) css::uno::Sequence< css::uno::Type > SAL_CALL OAccessibleControlContext::getTypes() { return ::comphelper::concatSequences( OAccessibleControlContext_Base::getTypes(), - OAccessibleImplementationAccess::getTypes(), OAccessibleControlContext_IBase::getTypes() ); } |