summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2023-10-20 13:22:16 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2023-10-21 13:48:59 +0200
commitcfaa52ed74278aab0e44f7cc9a66afe1c4166715 (patch)
treeaf6d61ec21988f58b07896f2c43dbbcb2ff188da /offapi
parenta8e75a8ac93c18a7e955e448bfd120d0ed9ef0b0 (diff)
a11y: Improve XAccessibleExtendedAttributes doc
The existing // MT: I guess it's not formula only? comment was justified. `XAccessibleExtendedAttributes::getExtendedAttributes`, is not only used to report formulae, but e.g. used to report a heading level by Writer paragraphs (s. `SwAccessibleParagraph::getExtendedAttributes`), so adjust the documentation and align it with the `IAcccessible2::attributes` one [1] that also uses the cell formula as an example. [1] https://accessibility.linuxfoundation.org/a11yspecs/ia2/docs/html/interface_i_accessible2.html#a0d51b0c189a000ee3b6ddf7f68da2009 Change-Id: I2d6f38911c3802edb55f9426a35b8986dd6e399a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158259 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleExtendedAttributes.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/offapi/com/sun/star/accessibility/XAccessibleExtendedAttributes.idl b/offapi/com/sun/star/accessibility/XAccessibleExtendedAttributes.idl
index ec5f2f7176a9..3ba748f9f574 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleExtendedAttributes.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleExtendedAttributes.idl
@@ -21,7 +21,7 @@ module com { module sun { module star { module accessibility {
interface XAccessibleExtendedAttributes : ::com::sun::star::uno::XInterface
{
- /* Returns the attribute of this object' formula */ // MT: I guess it's not formula only?
+ /** Returns the attributes specific to this object, like a cell's formula. */
any getExtendedAttributes() raises (::com::sun::star::lang::IndexOutOfBoundsException);
};