include/comphelper/OAccessible.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1b05f4053de690ad8a5d8723bfcd0ab47096a800 Author: Michael Weghorn <[email protected]> AuthorDate: Thu Mar 5 14:42:09 2026 +0100 Commit: Michael Weghorn <[email protected]> CommitDate: Fri Mar 6 07:17:59 2026 +0100 a11y: Mark OAccessible::getExtendedAttributes as final Mark OAccessible::getExtendedAttributes as final, now that all existing implementations of XAccessibleExtendedAttributes::getExtendedAttributes in OAccessible subclasses have been ported to override the new helper method introduced in Change-Id: Ie66f135fbf6cdc98c7cdca27fa3f5fe7db7f9a74 Author: Michael Weghorn <[email protected]> Date: Thu Mar 5 12:12:45 2026 +0100 a11y: Introduce helper to implement XAccessibleExtendedAttributes logic instead. Any potential new implementations in subclasses should be done likewise. Change-Id: Iecff4ca731d91c9a1e15805b9a78bbb8aa037867 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/201048 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/include/comphelper/OAccessible.hxx b/include/comphelper/OAccessible.hxx index c0af14fa6e1c..90a397454592 100644 --- a/include/comphelper/OAccessible.hxx +++ b/include/comphelper/OAccessible.hxx @@ -94,7 +94,7 @@ public: virtual css::lang::Locale SAL_CALL getLocale( ) override; // XAccessibleExtendedAttributes - virtual OUString SAL_CALL getExtendedAttributes() override; + virtual OUString SAL_CALL getExtendedAttributes() override final; protected: // OComponentHelper
