diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2022-08-10 15:58:39 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2022-08-11 13:55:11 +0200 |
commit | c799dccfd69b69ba7e7d3a83f91ef5712798a7b6 (patch) | |
tree | 279d09ac1695d952f673b8daf7c778c5302a4b9c /offapi | |
parent | 2b2e8471727f0825bb18df58be86a9252de4432e (diff) |
a11y: Fix XAccessibleComponent::getAccessibleAtPoint doc
The mention of a `TRUE` value when the return type is
an `XAccessible` rather than a boolean looks like a
copy-paste error from the
`XAccessibleComponent::containsPoint` doc just above.
While at it, also fix a typo present in both.
Change-Id: I9b597f3e500c7f4e448e228ebc27c45d8dc420a6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138095
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/accessibility/XAccessibleComponent.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/accessibility/XAccessibleComponent.idl b/offapi/com/sun/star/accessibility/XAccessibleComponent.idl index baadf436fde8..be23e66193e4 100644 --- a/offapi/com/sun/star/accessibility/XAccessibleComponent.idl +++ b/offapi/com/sun/star/accessibility/XAccessibleComponent.idl @@ -70,7 +70,7 @@ interface XAccessibleComponent : ::com::sun::star::uno::XInterface <p>The test point's coordinates are defined relative to the coordinate system of the object. That means that when the object is - an opaque rectangle then both the points (0,0) and (with-1,height-1) + an opaque rectangle then both the points (0,0) and (width-1,height-1) would yield a `TRUE` value.</p> @param Point @@ -90,8 +90,8 @@ interface XAccessibleComponent : ::com::sun::star::uno::XInterface <p>The test point's coordinates are defined relative to the coordinate system of the object. That means that when the object is - an opaque rectangle then both the points (0,0) and (with-1,height-1) - would yield a `TRUE` value.</p> + an opaque rectangle then both the points (0,0) and (width-1,height-1) + are points inside of the object. @param Point Coordinates of the test point for which to find the Accessible |