diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-10-23 13:41:54 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-10-23 20:36:07 +0200 |
commit | a8cfd280fbb5aff27ef90cee45daa185e24ea5c7 (patch) | |
tree | 197233c5f7b0546cb9bf62996823cd9db18fce62 /offapi | |
parent | f1dbbfe278c8673d98e2eb3d8ad460b9f7364642 (diff) |
a11y: Make XAccessibleValue doc more consistent
* Align the method names in the documentation
to what the acual methods are called
(e.g. `getMaximumValue`, not `getMaximumAccessibleValue`).
* Use "minimum" and "maximum" consistently, not "minimal"
and "maximal" in some places.
Change-Id: Idf4f36dca118a614b04a4b958e97d225f70dde0d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158347
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/accessibility/XAccessibleValue.idl | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/offapi/com/sun/star/accessibility/XAccessibleValue.idl b/offapi/com/sun/star/accessibility/XAccessibleValue.idl index 842f8776ae25..ff4149489e3d 100644 --- a/offapi/com/sun/star/accessibility/XAccessibleValue.idl +++ b/offapi/com/sun/star/accessibility/XAccessibleValue.idl @@ -44,8 +44,7 @@ interface XAccessibleValue : ::com::sun::star::uno::XInterface <p>The argument is clipped to the valid interval whose upper and lower bounds are returned by the methods - getMaximumAccessibleValue() and - getMinimumAccessibleValue(), i.e. if it is lower than + getMaximumValue() and getMinimumValue(), i.e. if it is lower than the minimum value the new value will be the minimum and if it is greater than the maximum then the new value will be the maximum.</p> @@ -59,41 +58,41 @@ interface XAccessibleValue : ::com::sun::star::uno::XInterface */ boolean setCurrentValue ([in] any aNumber); - /** Returns the maximal value that can be represented by this object. + /** Returns the maximum value that can be represented by this object. <p>The type of the returned value is implementation dependent. It does not have to be the same type as that returned by - getCurrentAccessibleValue().</p> + getCurrentValue().</p> @return - Returns the maximal value in an implementation dependent type. + Returns the maximum value in an implementation dependent type. If this object has no upper bound then an empty object is returned. */ any getMaximumValue (); - /** Returns the minimal value that can be represented by this object. + /** Returns the minimum value that can be represented by this object. <p>The type of the returned value is implementation dependent. It does not have to be the same type as that returned by - getCurrentAccessibleValue().</p> + getCurrentValue().</p> @return - Returns the minimal value in an implementation dependent type. + Returns the mimimum value in an implementation dependent type. If this object has no lower bound then an empty object is returned. */ any getMinimumValue (); - /** Returns the minimal increment by which the value represented by this + /** Returns the minimum increment by which the value represented by this object can be adjusted. <p>The type of the returned value is implementation dependent. It does not have to be the same type as that returned by - getCurrentAccessibleValue().</p> + getCurrentValue().</p> @return - Returns the minimal increment value in an implementation dependent type. + Returns the minium increment value in an implementation dependent type. If this object has no minimum increment value, then an empty object is returned. |