diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-08-29 09:56:33 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-08-29 12:14:22 +0200 |
commit | 214a7d7399ffedea6b5eb4214e3b00c184a801ab (patch) | |
tree | d109ae0df8c1e6356d483d8f8b08edee163d69ba /winaccessibility/source/UAccCOM | |
parent | 710fa4e68cc134d9970a6d0c034a84c3419be14a (diff) |
wina11y: Update comment now that IAccessible2 PR was merged
IAccessible2 PR [1] was merged now as upstream commit [2]
commit 2b8c2c79417bad4b464761a142fab45ffde8bfa8
Author: Michael Weghorn <m.weghorn@posteo.de>
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 <m.weghorn@posteo.de>
Diffstat (limited to 'winaccessibility/source/UAccCOM')
-rw-r--r-- | winaccessibility/source/UAccCOM/MAccessible.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
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<XAccessibleContext2> xContext2(pRContext, UNO_QUERY); if (xContext2.is()) { |