include/unotools/accessiblerelationsethelper.hxx | 4 ---- unotools/source/accessibility/accessiblerelationsethelper.cxx | 5 ----- 2 files changed, 9 deletions(-)
New commits: commit 564e9b441a398576791d96f4874ad576a6cb1061 Author: Michael Weghorn <[email protected]> AuthorDate: Fri Jun 20 10:35:57 2025 +0200 Commit: Michael Weghorn <[email protected]> CommitDate: Fri Jun 20 17:36:05 2025 +0200 unotools a11y: Drop AccessibleRelationSetHelper::getImplementationId It does the same as the WeakImplHelper base class implementation. Change-Id: I74b155d78c3f50fa5bf78dde7d3f738bbb952c3d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186750 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/include/unotools/accessiblerelationsethelper.hxx b/include/unotools/accessiblerelationsethelper.hxx index 02803cf9ae43..88ebb5abe308 100644 --- a/include/unotools/accessiblerelationsethelper.hxx +++ b/include/unotools/accessiblerelationsethelper.hxx @@ -111,10 +111,6 @@ public: */ virtual css::uno::Sequence<css::uno::Type> SAL_CALL getTypes() override; - /** Returns an implementation id. - */ - virtual css::uno::Sequence<sal_Int8> SAL_CALL getImplementationId() override; - private: /// Mutex guarding this object. mutable std::mutex maMutex; diff --git a/unotools/source/accessibility/accessiblerelationsethelper.cxx b/unotools/source/accessibility/accessiblerelationsethelper.cxx index 0302e58d41d0..0c16481e19ed 100644 --- a/unotools/source/accessibility/accessiblerelationsethelper.cxx +++ b/unotools/source/accessibility/accessiblerelationsethelper.cxx @@ -166,9 +166,4 @@ uno::Sequence< css::uno::Type> AccessibleRelationSetHelper::getTypes() return aTypes; } -uno::Sequence<sal_Int8> SAL_CALL AccessibleRelationSetHelper::getImplementationId() -{ - return css::uno::Sequence<sal_Int8>(); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
