summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt
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/awt
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/awt')
-rw-r--r--offapi/com/sun/star/awt/XAnimatedImages.idl8
-rw-r--r--offapi/com/sun/star/awt/XDialogProvider2.idl2
-rw-r--r--offapi/com/sun/star/awt/XMouseListener.idl2
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumnModel.idl4
-rw-r--r--offapi/com/sun/star/awt/grid/XGridDataModel.idl2
-rw-r--r--offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl4
-rw-r--r--offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl2
-rw-r--r--offapi/com/sun/star/awt/tree/XTreeNode.idl4
8 files changed, 14 insertions, 14 deletions
diff --git a/offapi/com/sun/star/awt/XAnimatedImages.idl b/offapi/com/sun/star/awt/XAnimatedImages.idl
index bba769c81d2e..deed8a442848 100644
--- a/offapi/com/sun/star/awt/XAnimatedImages.idl
+++ b/offapi/com/sun/star/awt/XAnimatedImages.idl
@@ -72,7 +72,7 @@ interface XAnimatedImages
@param i_index
the index of the set those image URLs are to be retrieved. Must be greater than or equal to <code>0</code>,
- and smaller than the value returned by <member>getImageSetCount</member>.
+ and smaller than the value returned by getImageSetCount().
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the <code>i_index</code> is not a valid index.
@@ -91,7 +91,7 @@ interface XAnimatedImages
@param i_index
the index at which a new image set should be inserted. Must be greater than or equal to <code>0</code>,
- and smaller than or equal to the value returned by <member>getImageSetCount</member>.
+ and smaller than or equal to the value returned by getImageSetCount().
@param i_imageURLs
the URLs for the images for the given set. Will be resolved using a com::sun::star::graphic::GraphicProvider.
@@ -113,7 +113,7 @@ interface XAnimatedImages
@param i_index
the index of the set those image URLs are to be replaced. Must be greater than or equal to <code>0</code>,
- and smaller than the value returned by <member>getImageSetCount</member>.
+ and smaller than the value returned by getImageSetCount().
@param i_imageURLs
the URLs for the images for the given set. Will be resolved using a com::sun::star::graphic::GraphicProvider.
@@ -137,7 +137,7 @@ interface XAnimatedImages
@param i_index
the index of the set to remove. Must be greater than or equal to <code>0</code>,
- and smaller than the value returned by <member>getImageSetCount</member>.
+ and smaller than the value returned by getImageSetCount().
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the <code>i_index</code> is not a valid index.
diff --git a/offapi/com/sun/star/awt/XDialogProvider2.idl b/offapi/com/sun/star/awt/XDialogProvider2.idl
index 1fefe3bc8653..73c419a4e709 100644
--- a/offapi/com/sun/star/awt/XDialogProvider2.idl
+++ b/offapi/com/sun/star/awt/XDialogProvider2.idl
@@ -103,7 +103,7 @@ interface XDialogProvider2 : ::com::sun::star::awt::XDialogProvider {
or a component supporting the XControl interface, so an <code>XWindowPeer</code> can be
obtained from it. The given window will be used as parent window for the to-be-created dialog.</li>
<li><em>EventHandler</em> - specifies a component handling events in the dialog. See
- <member>createDialogWithHandler</member> for a detailed specification of dialog event handling.</li>
+ createDialogWithHandler() for a detailed specification of dialog event handling.</li>
</ul>
</p>
*/
diff --git a/offapi/com/sun/star/awt/XMouseListener.idl b/offapi/com/sun/star/awt/XMouseListener.idl
index 9906c48f1daa..896a274eeaaa 100644
--- a/offapi/com/sun/star/awt/XMouseListener.idl
+++ b/offapi/com/sun/star/awt/XMouseListener.idl
@@ -39,7 +39,7 @@ published interface XMouseListener: com::sun::star::lang::XEventListener
(also known as context menus) on objects, you might receive two events
for a single mouse press: For example, if, on your operating system,
pressing the right mouse button indicates the request for a context menu,
- then you will receive one call to <member>mousePressed</member> indicating
+ then you will receive one call to mousePressed() indicating
the mouse click, and another one indicating the context menu request. For
the latter, the <member>MouseEvent::PopupTrigger</member> member of the
event will be set to <TRUE/>.</p>
diff --git a/offapi/com/sun/star/awt/grid/XGridColumnModel.idl b/offapi/com/sun/star/awt/grid/XGridColumnModel.idl
index 16344dea1d4d..6ef4c5923253 100644
--- a/offapi/com/sun/star/awt/grid/XGridColumnModel.idl
+++ b/offapi/com/sun/star/awt/grid/XGridColumnModel.idl
@@ -61,7 +61,7 @@ published interface XGridColumnModel
/** creates a new column for use with the column model.
- <p>The newly created column is not yet inserted into the column container, you need to call <member>addColumn</member>
+ <p>The newly created column is not yet inserted into the column container, you need to call addColumn()
after you initialized the column object.</p>
*/
XGridColumn
@@ -69,7 +69,7 @@ published interface XGridColumnModel
/** Adds a column to the model.
- <p>You should use the <member>createColumn</member> member to create a new column. This gives
+ <p>You should use the createColumn() member to create a new column. This gives
implementations of the <code>XGridColumnModel</code> interface the possibility to provide own column
implementations which extend the basic GridColumn type.</p>
diff --git a/offapi/com/sun/star/awt/grid/XGridDataModel.idl b/offapi/com/sun/star/awt/grid/XGridDataModel.idl
index 94f6981f748e..3090db51838b 100644
--- a/offapi/com/sun/star/awt/grid/XGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XGridDataModel.idl
@@ -90,7 +90,7 @@ published interface XGridDataModel
/** retrieves the data for a complete row
<p>This method is provided for performance and convenience reasons, it delivers the same result
- as subsequent calls to <member>getCellData</member> would.</p>
+ as subsequent calls to getCellData() would.</p>
@param Row
the index of the row whose data should is to be retrieved.
diff --git a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
index 0b650b5c51a6..74fd7b23c0bb 100644
--- a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
@@ -151,7 +151,7 @@ published interface XMutableGridDataModel : XGridDataModel
/** updates the tooltip for all cells of a given row
- <p>Effectively this method is a shortcut for calling <member>updateCellToolTip</member> multiple
+ <p>Effectively this method is a shortcut for calling updateCellToolTip() multiple
times in a row, for all cells of a given row.</p>
@see XGridDataModel::getCellToolTip
@@ -168,7 +168,7 @@ published interface XMutableGridDataModel : XGridDataModel
void addGridDataListener( [in] XGridDataListener Listener );
- /** revokes a listener which was previously registered via <member>addGridDataListener</member>
+ /** revokes a listener which was previously registered via addGridDataListener()
@param Listener
specifies the listener to revoke.
*/
diff --git a/offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl b/offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl
index 7773ed2dc8d6..dad23fd98983 100644
--- a/offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl
+++ b/offapi/com/sun/star/awt/tree/XMutableTreeDataModel.idl
@@ -28,7 +28,7 @@ module com { module sun { module star { module awt { module tree {
/** This is the editable version of the XTreeDataModel.
- <p>Note that only XTreeNode created from the same instance with <member>createNode</member>
+ <p>Note that only XTreeNode created from the same instance with createNode()
are valid nodes for this instance.</p>
*/
interface XMutableTreeDataModel : XTreeDataModel
diff --git a/offapi/com/sun/star/awt/tree/XTreeNode.idl b/offapi/com/sun/star/awt/tree/XTreeNode.idl
index 8cbb27a07de1..e2e178cb70f7 100644
--- a/offapi/com/sun/star/awt/tree/XTreeNode.idl
+++ b/offapi/com/sun/star/awt/tree/XTreeNode.idl
@@ -37,7 +37,7 @@ interface XTreeNode
/** Returns the child tree node at <var>Index</var>.
@throws ::com::sun::star::lang::IndexOutOfBoundsException
- if <var>Index</var> is less than 0 or equal or greater then <member>getChildCount</member>.
+ if <var>Index</var> is less than 0 or equal or greater then getChildCount().
*/
XTreeNode getChildAt( [in] long Index )
raises( com::sun::star::lang::IndexOutOfBoundsException );
@@ -56,7 +56,7 @@ interface XTreeNode
/** Returns <TRUE/> if the children of this node are created on demand.
<p>A TreeControl will handle a node that returns <TRUE/> always
- like a node that has child nodes, even if <member>getChildCount</member>
+ like a node that has child nodes, even if getChildCount()
returns 0.</p>
@see TreeExpansionListener;