summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/accessibility
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 22:20:42 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:00 +0200
commitb352a8bf0321c13919c9882484a1c4d4d65cfd33 (patch)
tree1f9d5c7f1d14def51714f0ac5ebe30ab0f5c9ed9 /offapi/com/sun/star/accessibility
parent9f12a9da8d91364d4d0865021adbe62bfa09148c (diff)
*api: convert <member>method</member> to method()
Doxygen will only recognize a un-qualified method name as such if it is followed by "()". sed -i "s,<member>\([a-z][^<]\+[^)]\)</member>,\1(),g" Change-Id: I69bc17849e76f3a3d91c6daf0f1be8168a83cfc5
Diffstat (limited to 'offapi/com/sun/star/accessibility')
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleRole.idl2
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl6
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleText.idl2
-rw-r--r--offapi/com/sun/star/accessibility/XAccessibleValue.idl8
4 files changed, 9 insertions, 9 deletions
diff --git a/offapi/com/sun/star/accessibility/AccessibleRole.idl b/offapi/com/sun/star/accessibility/AccessibleRole.idl
index 1b5b4e213d1a..aaa65634c7a5 100644
--- a/offapi/com/sun/star/accessibility/AccessibleRole.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleRole.idl
@@ -29,7 +29,7 @@ module com { module sun { module star { module accessibility {
the Java class javax.accessibility.AccessibleRole. The role of an
object describes its generic function like "button", "menu", or "text".
You can obtain an object's role by calling the
- <member>getAccessibleRole</member> method of the
+ getAccessibleRole() method of the
XAccessibleContext interface.</p>
<p>We are using constants instead of a more typesafe enum. The reason
diff --git a/offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl b/offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl
index db940a0b8fd6..bf31da06c7d1 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleRelationSet.idl
@@ -33,9 +33,9 @@ module com { module sun { module star { module accessibility {
between Accessible objects. Most of the convenience
methods of the corresponding AccessibleRelationSet interface of the Java
Accessibility API have been removed from this interface in order to
- clean it up. These methods are <member>add</member>,
- <member>addAll</member>, <member>clear</member>, and
- <member>remove</member>. The other methods have been renamed to achieve
+ clean it up. These methods are add(),
+ addAll(), clear(), and
+ remove(). The other methods have been renamed to achieve
a greater conformance with the other accessibility interfaces.</p>
@since OOo 1.1.2
diff --git a/offapi/com/sun/star/accessibility/XAccessibleText.idl b/offapi/com/sun/star/accessibility/XAccessibleText.idl
index e11d0c12f00c..3a722de98a13 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleText.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleText.idl
@@ -90,7 +90,7 @@ interface XAccessibleText : ::com::sun::star::uno::XInterface
The new index of the caret. This caret is actually placed to
the left side of the character with that index. An index of 0
places the caret so that the next insertion goes before the
- first character. An index of <member>getCharacterCount</member>
+ first character. An index of getCharacterCount()
leads to insertion after the last character.
@return
diff --git a/offapi/com/sun/star/accessibility/XAccessibleValue.idl b/offapi/com/sun/star/accessibility/XAccessibleValue.idl
index 22984f7370a7..ffe62951f48a 100644
--- a/offapi/com/sun/star/accessibility/XAccessibleValue.idl
+++ b/offapi/com/sun/star/accessibility/XAccessibleValue.idl
@@ -49,8 +49,8 @@ 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
- <member>getMaximumAccessibleValue</member> and
- <member>getMinimumAccessibleValue</member>, i.e. if it is lower than
+ getMaximumAccessibleValue() and
+ getMinimumAccessibleValue(), 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>
@@ -68,7 +68,7 @@ interface XAccessibleValue : ::com::sun::star::uno::XInterface
<p>The type of the returned value is implementation dependent. It
does not have to be the same type as that returned by
- <member>getCurrentAccessibleValue</member>.</p>
+ getCurrentAccessibleValue().</p>
@return
Returns the maximal value in an implementation dependent type.
@@ -81,7 +81,7 @@ interface XAccessibleValue : ::com::sun::star::uno::XInterface
<p>The type of the returned value is implementation dependent. It
does not have to be the same type as that returned by
- <member>getCurrentAccessibleValue</member>.</p>
+ getCurrentAccessibleValue().</p>
@return
Returns the minimal value in an implementation dependent type.