editeng/source/accessibility/AccessibleContextBase.cxx | 11 ----------- include/editeng/AccessibleContextBase.hxx | 8 -------- vcl/inc/graphic/UnoGraphic.hxx | 1 - vcl/source/graphic/UnoGraphic.cxx | 5 ----- 4 files changed, 25 deletions(-)
New commits: commit 50bdfc1c990ec6fb1f190263dcdc43ed0d2d90bc Author: Michael Weghorn <[email protected]> AuthorDate: Fri Jun 20 10:33:59 2025 +0200 Commit: Michael Weghorn <[email protected]> CommitDate: Fri Jun 20 17:35:58 2025 +0200 editeng a11y: Drop AccessibleContextBase::getImplementationId It does the same as the ImplInheritanceHelper base class implementation. Change-Id: Ic9bf15d7c3798640fcf47a7060cf3d28c6edc694 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186749 Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/editeng/source/accessibility/AccessibleContextBase.cxx b/editeng/source/accessibility/AccessibleContextBase.cxx index 0f28c6bb2c63..bd8d689c89d2 100644 --- a/editeng/source/accessibility/AccessibleContextBase.cxx +++ b/editeng/source/accessibility/AccessibleContextBase.cxx @@ -332,17 +332,6 @@ uno::Sequence< OUString > SAL_CALL u"com.sun.star.accessibility.AccessibleContext"_ustr}; } - -// XTypeProvider - -uno::Sequence<sal_Int8> SAL_CALL - AccessibleContextBase::getImplementationId() -{ - return css::uno::Sequence<sal_Int8>(); -} - -// internal - void SAL_CALL AccessibleContextBase::disposing() { SetState (AccessibleStateType::DEFUNC); diff --git a/include/editeng/AccessibleContextBase.hxx b/include/editeng/AccessibleContextBase.hxx index 1b9562986487..70075ec2cb06 100644 --- a/include/editeng/AccessibleContextBase.hxx +++ b/include/editeng/AccessibleContextBase.hxx @@ -227,14 +227,6 @@ public: virtual css::uno::Sequence< OUString> SAL_CALL getSupportedServiceNames() override; - - //===== XTypeProvider =================================================== - - /** Returns an implementation id. - */ - virtual css::uno::Sequence<sal_Int8> SAL_CALL - getImplementationId() override; - /** Check whether or not the object has been disposed (or is in the state of being disposed). commit 4890ba6588a1a71cc4f17332b0f1a5ca943a9df7 Author: Michael Weghorn <[email protected]> AuthorDate: Fri Jun 20 10:31:40 2025 +0200 Commit: Michael Weghorn <[email protected]> CommitDate: Fri Jun 20 17:35:49 2025 +0200 vcl: Drop Graphic::getImplementationId It does the same as the base class implementation, GraphicDescriptor::getImplementationId. Change-Id: I248d24db3b58b18290d463ccc5e638c18594b390 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186748 Reviewed-by: Michael Weghorn <[email protected]> Tested-by: Jenkins diff --git a/vcl/inc/graphic/UnoGraphic.hxx b/vcl/inc/graphic/UnoGraphic.hxx index 94fcb361dcd1..66169352aa6b 100644 --- a/vcl/inc/graphic/UnoGraphic.hxx +++ b/vcl/inc/graphic/UnoGraphic.hxx @@ -55,7 +55,6 @@ private: // XTypeProvider virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override; - virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override; // XGraphic virtual ::sal_Int8 SAL_CALL getType( ) override; diff --git a/vcl/source/graphic/UnoGraphic.cxx b/vcl/source/graphic/UnoGraphic.cxx index da9f8f0b74d9..1e5c2f0f01e4 100644 --- a/vcl/source/graphic/UnoGraphic.cxx +++ b/vcl/source/graphic/UnoGraphic.cxx @@ -110,11 +110,6 @@ uno::Sequence< uno::Type > SAL_CALL Graphic::getTypes() ).getTypes(); } -uno::Sequence< sal_Int8 > SAL_CALL Graphic::getImplementationId() -{ - return css::uno::Sequence<sal_Int8>(); -} - sal_Int8 SAL_CALL Graphic::getType() { sal_Int8 cRet = graphic::GraphicType::EMPTY;
