From 214a7d7399ffedea6b5eb4214e3b00c184a801ab Mon Sep 17 00:00:00 2001 From: Michael Weghorn Date: Thu, 29 Aug 2024 09:56:33 +0200 Subject: wina11y: Update comment now that IAccessible2 PR was merged IAccessible2 PR [1] was merged now as upstream commit [2] commit 2b8c2c79417bad4b464761a142fab45ffde8bfa8 Author: Michael Weghorn Date: Thu Aug 29 07:55:56 2024 +0200 Add an "id" object attribute. (#31) , so is part of the official IAccessible2 object attribute specification now. [1] https://github.com/LinuxA11y/IAccessible2/pull/31 [2] https://github.com/LinuxA11y/IAccessible2/commit/2b8c2c79417bad4b464761a142fab45ffde8bfa8 Change-Id: Ia613a673b832d35bcc6e3801325dc9f55b393a2c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/172585 Tested-by: Jenkins Reviewed-by: Michael Weghorn --- winaccessibility/source/UAccCOM/MAccessible.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'winaccessibility/source') diff --git a/winaccessibility/source/UAccCOM/MAccessible.cxx b/winaccessibility/source/UAccCOM/MAccessible.cxx index bd0a2d45ac76..8763b48dd3a3 100644 --- a/winaccessibility/source/UAccCOM/MAccessible.cxx +++ b/winaccessibility/source/UAccCOM/MAccessible.cxx @@ -2669,9 +2669,8 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP CMAccessible::get_attributes(/*[out]*/ BSTR *p xText, IA2AttributeType::ObjectAttributes, 0, nStartOffset, nEndOffset); } - // report accessible ID via "id" object attribute - // (pending PR suggesting to add that attribute to the IAccessible2 spec: - // https://github.com/LinuxA11y/IAccessible2/pull/31 ) + // report accessible ID as "id" object attribute as specified in the + // IAccessible2 object attribute spec Reference xContext2(pRContext, UNO_QUERY); if (xContext2.is()) { -- cgit