diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-28 00:02:01 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:03 +0200 |
commit | 4718949d417dd5297073997546e04ecf300b0479 (patch) | |
tree | 9facb5c48de936ea52c58812e327feda55849854 /offapi/com | |
parent | b235412d8f84e98dc457894228a357ab0c65f6d0 (diff) |
*api: convert <method>
sed -i "s,<method>\([a-z][^<]\+\)</method>,\1,g"
Change-Id: I9483d63cce4afd168d47a465b367aed3da45d64b
Diffstat (limited to 'offapi/com')
8 files changed, 8 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/grid/XGridColumn.idl b/offapi/com/sun/star/awt/grid/XGridColumn.idl index bb9bf091d85e..5858548e7456 100644 --- a/offapi/com/sun/star/awt/grid/XGridColumn.idl +++ b/offapi/com/sun/star/awt/grid/XGridColumn.idl @@ -126,7 +126,7 @@ published interface XGridColumn void addGridColumnListener( [in] XGridColumnListener listener); - /** Removes a listener previously added with <method>addColumnListener()</method>. + /** Removes a listener previously added with addColumnListener(). @param Listener the listener to remove. */ diff --git a/offapi/com/sun/star/awt/grid/XGridRowSelection.idl b/offapi/com/sun/star/awt/grid/XGridRowSelection.idl index 3ed65208d92d..78e3a98ccbcc 100644 --- a/offapi/com/sun/star/awt/grid/XGridRowSelection.idl +++ b/offapi/com/sun/star/awt/grid/XGridRowSelection.idl @@ -88,7 +88,7 @@ published interface XGridRowSelection */ void addSelectionListener( [in] XGridSelectionListener listener); - /** Removes a listener previously added with <method>addSelectionListener()</method>. + /** Removes a listener previously added with addSelectionListener(). @param listener the listener to remove. */ diff --git a/offapi/com/sun/star/awt/tab/XTabPageContainer.idl b/offapi/com/sun/star/awt/tab/XTabPageContainer.idl index d8cafa3009ab..0b08118e1e57 100644 --- a/offapi/com/sun/star/awt/tab/XTabPageContainer.idl +++ b/offapi/com/sun/star/awt/tab/XTabPageContainer.idl @@ -75,7 +75,7 @@ published interface XTabPageContainer void addTabPageContainerListener( [in] XTabPageContainerListener listener); - /** Removes a listener previously added with <method>addTabPageListener()</method>. + /** Removes a listener previously added with addTabPageListener(). @param listener the listener to remove. */ diff --git a/offapi/com/sun/star/awt/tree/XTreeDataModel.idl b/offapi/com/sun/star/awt/tree/XTreeDataModel.idl index beb8f1907446..0f2b8816b9cd 100644 --- a/offapi/com/sun/star/awt/tree/XTreeDataModel.idl +++ b/offapi/com/sun/star/awt/tree/XTreeDataModel.idl @@ -55,7 +55,7 @@ interface XTreeDataModel : ::com::sun::star::lang::XComponent void addTreeDataModelListener( [in] XTreeDataModelListener Listener ); - /** Removes a listener previously added with <method>addTreeDataModelListener()</method>. + /** Removes a listener previously added with addTreeDataModelListener(). @param Listener the listener to remove. diff --git a/offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl b/offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl index 6c9d4100e730..99e4c103b781 100644 --- a/offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl +++ b/offapi/com/sun/star/awt/tree/XTreeExpansionListener.idl @@ -38,7 +38,7 @@ interface XTreeExpansionListener: com::sun::star::lang::XEventListener { /** Invoked when a node with children on demand is about to be expanded. - <p>This event is invoked before the <method>treeExpanding()</method> + <p>This event is invoked before the treeExpanding() event.</p> */ void requestChildNodes( [in] TreeExpansionEvent Event ); diff --git a/offapi/com/sun/star/drawing/XSlidePreviewCache.idl b/offapi/com/sun/star/drawing/XSlidePreviewCache.idl index 66a81e383e1d..f2692a9870cf 100644 --- a/offapi/com/sun/star/drawing/XSlidePreviewCache.idl +++ b/offapi/com/sun/star/drawing/XSlidePreviewCache.idl @@ -92,7 +92,7 @@ interface XSlidePreviewCache void removePreviewCreationNotifyListener ([in] XSlidePreviewCacheListener xListener); /** Stop the asynchronous creation of previews temporarily. - Call <method>resume()</method> to restart it. + Call resume() to restart it. */ void pause (); diff --git a/offapi/com/sun/star/drawing/XSlidePreviewCacheListener.idl b/offapi/com/sun/star/drawing/XSlidePreviewCacheListener.idl index dc96b04d578b..346bc8bcf0ef 100644 --- a/offapi/com/sun/star/drawing/XSlidePreviewCacheListener.idl +++ b/offapi/com/sun/star/drawing/XSlidePreviewCacheListener.idl @@ -27,7 +27,7 @@ module com { module sun { module star { module drawing { /** Listener for asynchronous preview creations. Called when a slide preview has been created that was previously requested via a call to <method>XSlidePreviewCache::getSlidePreview()</method>. The - implementor may then call <method>getSlidePreview()</method> a second + implementor may then call getSlidePreview() a second time to get the up-to-date version of the preview. */ interface XSlidePreviewCacheListener diff --git a/offapi/com/sun/star/table/XMergeableCellRange.idl b/offapi/com/sun/star/table/XMergeableCellRange.idl index 55a039a8b047..8ee835ac2cd6 100644 --- a/offapi/com/sun/star/table/XMergeableCellRange.idl +++ b/offapi/com/sun/star/table/XMergeableCellRange.idl @@ -35,7 +35,7 @@ interface XMergeableCellRange : com::sun::star::uno::XInterface @throws com::sun::star::lang::NoSupportException if a merge is not possible for this range. You can use - <method>isMergeable()</method> to check if a merge is possible. + isMergeable() to check if a merge is possible. */ void merge() raises( ::com::sun::star::lang::NoSupportException ); |