offapi/com/sun/star/accessibility/XAccessibleComponent.idl |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c799dccfd69b69ba7e7d3a83f91ef5712798a7b6
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Wed Aug 10 15:58:39 2022 +0200
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Thu Aug 11 13:55:11 2022 +0200

    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.wegh...@posteo.de>

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

Reply via email to