sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx | 8 -------- sc/source/ui/inc/AccessibleDocumentPagePreview.hxx | 7 ------- svtools/source/control/accessibleruler.cxx | 6 ------ svtools/source/control/accessibleruler.hxx | 5 ----- 4 files changed, 26 deletions(-)
New commits: commit 385cac8d28a65329a333ba6e3ae02a7d0e550f36 Author: Michael Weghorn <m.wegh...@posteo.de> AuthorDate: Fri Jun 20 10:02:41 2025 +0200 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Fri Jun 20 17:35:22 2025 +0200 sc a11y: Drop ScAccessibleDocumentPagePreview::getImplementationId It does the same as the ImplInheritanceHelper base class implementation. Change-Id: I1649e6e4f5f5aa9edd48ef6803a0ffbc66e9df24 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186745 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> diff --git a/sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx b/sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx index 32f74e8bd240..8f4061319a8b 100644 --- a/sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx +++ b/sc/source/ui/Accessibility/AccessibleDocumentPagePreview.cxx @@ -1435,14 +1435,6 @@ uno::Sequence< OUString> SAL_CALL ScAccessibleDocumentPagePreview::getSupportedS return comphelper::concatSequences(ScAccessibleContextBase::getSupportedServiceNames(), vals); } -//===== XTypeProvider ======================================================= - -uno::Sequence<sal_Int8> SAL_CALL - ScAccessibleDocumentPagePreview::getImplementationId() -{ - return css::uno::Sequence<sal_Int8>(); -} - //===== internal ======================================================== OUString ScAccessibleDocumentPagePreview::createAccessibleDescription() diff --git a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx index 8b5284e52bd7..9cacbd4735fc 100644 --- a/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx +++ b/sc/source/ui/inc/AccessibleDocumentPagePreview.hxx @@ -86,13 +86,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; - ///===== internal ======================================================== protected: commit 959b50a348ed81605ef8964c6aeb0b2c2481cb40 Author: Michael Weghorn <m.wegh...@posteo.de> AuthorDate: Fri Jun 20 09:46:39 2025 +0200 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Fri Jun 20 17:35:14 2025 +0200 svtools a11y: Drop SvtRulerAccessible::getImplementationId The base class implementation in ImplInheritanceHelper::getImplementationId does the same. Change-Id: Ic5e3fcf63d3eebf94b9abf989d4e7953264e1f7a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186744 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> diff --git a/svtools/source/control/accessibleruler.cxx b/svtools/source/control/accessibleruler.cxx index a4674b328073..828a289dd5f5 100644 --- a/svtools/source/control/accessibleruler.cxx +++ b/svtools/source/control/accessibleruler.cxx @@ -200,12 +200,6 @@ Sequence< OUString > SAL_CALL SvtRulerAccessible::getSupportedServiceNames() return { u"com.sun.star.accessibility.AccessibleContext"_ustr }; } -//===== XTypeProvider ======================================================= -Sequence< sal_Int8 > SAL_CALL SvtRulerAccessible::getImplementationId() -{ - return css::uno::Sequence<sal_Int8>(); -} - void SAL_CALL SvtRulerAccessible::disposing() { mpRepr = nullptr; // object dies with representation diff --git a/svtools/source/control/accessibleruler.hxx b/svtools/source/control/accessibleruler.hxx index 530dceca34bc..ebd1262a2bdd 100644 --- a/svtools/source/control/accessibleruler.hxx +++ b/svtools/source/control/accessibleruler.hxx @@ -100,11 +100,6 @@ public: virtual css::uno::Sequence< OUString> SAL_CALL getSupportedServiceNames() override; - //===== XTypeProvider =================================================== - - virtual css::uno::Sequence<sal_Int8> SAL_CALL - getImplementationId() override; - protected: virtual css::awt::Rectangle implGetBounds() override;