summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-28 00:27:46 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:04 +0200
commit6e1d239ae04bbb1b639ae8d04c59d3375f867712 (patch)
treef4ce26e51900176ae95320652fb31404144a54eb /offapi/com/sun/star/awt
parentbe7f280ea7034a1cb1195a3d27b51d1b9626b905 (diff)
*api: convert <true/> <false/> <void/>
sed -i 's,<\(true\|false\|void\)/>,`\U\1`,g' Change-Id: I87a6e81ff22b47ea979322d01c49350892d3945f
Diffstat (limited to 'offapi/com/sun/star/awt')
-rw-r--r--offapi/com/sun/star/awt/XControl.idl4
-rw-r--r--offapi/com/sun/star/awt/XListBox.idl4
-rw-r--r--offapi/com/sun/star/awt/XRadioButton.idl2
-rw-r--r--offapi/com/sun/star/awt/XVclWindowPeer.idl6
-rw-r--r--offapi/com/sun/star/awt/grid/UnoControlGridModel.idl2
-rw-r--r--offapi/com/sun/star/awt/grid/XGridColumn.idl2
-rw-r--r--offapi/com/sun/star/awt/grid/XGridRowSelection.idl6
7 files changed, 13 insertions, 13 deletions
diff --git a/offapi/com/sun/star/awt/XControl.idl b/offapi/com/sun/star/awt/XControl.idl
index b83c130f32dd..cc00f48e996a 100644
--- a/offapi/com/sun/star/awt/XControl.idl
+++ b/offapi/com/sun/star/awt/XControl.idl
@@ -96,12 +96,12 @@ published interface XControl: com::sun::star::lang::XComponent
void setDesignMode( [in] boolean bOn );
- /** returns <true/> if the control is in design mode, <false/> otherwise.
+ /** returns `TRUE` if the control is in design mode, `FALSE` otherwise.
*/
boolean isDesignMode();
- /** returns <true/> if the control is transparent, <false/> otherwise.
+ /** returns `TRUE` if the control is transparent, `FALSE` otherwise.
*/
boolean isTransparent();
diff --git a/offapi/com/sun/star/awt/XListBox.idl b/offapi/com/sun/star/awt/XListBox.idl
index a7441cbc8afd..e4582086d142 100644
--- a/offapi/com/sun/star/awt/XListBox.idl
+++ b/offapi/com/sun/star/awt/XListBox.idl
@@ -127,8 +127,8 @@ published interface XListBox: com::sun::star::uno::XInterface
[in] boolean bSelect );
- /** returns <true/> if multiple items can be selected,
- <false/> if only one item can be selected.
+ /** returns `TRUE` if multiple items can be selected,
+ `FALSE` if only one item can be selected.
*/
boolean isMutipleMode();
diff --git a/offapi/com/sun/star/awt/XRadioButton.idl b/offapi/com/sun/star/awt/XRadioButton.idl
index 519a91968c1a..de3e33efae7c 100644
--- a/offapi/com/sun/star/awt/XRadioButton.idl
+++ b/offapi/com/sun/star/awt/XRadioButton.idl
@@ -44,7 +44,7 @@ published interface XRadioButton: com::sun::star::uno::XInterface
void removeItemListener( [in] com::sun::star::awt::XItemListener l );
- /** returns <true/> if the button is checked, <false/> otherwise.
+ /** returns `TRUE` if the button is checked, `FALSE` otherwise.
*/
boolean getState();
diff --git a/offapi/com/sun/star/awt/XVclWindowPeer.idl b/offapi/com/sun/star/awt/XVclWindowPeer.idl
index 08169561a164..8023c112ac2e 100644
--- a/offapi/com/sun/star/awt/XVclWindowPeer.idl
+++ b/offapi/com/sun/star/awt/XVclWindowPeer.idl
@@ -36,7 +36,7 @@
published interface XVclWindowPeer: com::sun::star::awt::XWindowPeer
{
- /** returns <true/> if the window peer is a child, <false/> otherwise.
+ /** returns `TRUE` if the window peer is a child, `FALSE` otherwise.
*/
boolean isChild( [in] com::sun::star::awt::XWindowPeer Peer );
@@ -46,8 +46,8 @@ published interface XVclWindowPeer: com::sun::star::awt::XWindowPeer
void setDesignMode( [in] boolean bOn );
- /** returns <true/> if the window peer is in design mode,
- <false/> otherwise.
+ /** returns `TRUE` if the window peer is in design mode,
+ `FALSE` otherwise.
*/
boolean isDesignMode();
diff --git a/offapi/com/sun/star/awt/grid/UnoControlGridModel.idl b/offapi/com/sun/star/awt/grid/UnoControlGridModel.idl
index 0aba0fa43c4c..ef2fed2637ff 100644
--- a/offapi/com/sun/star/awt/grid/UnoControlGridModel.idl
+++ b/offapi/com/sun/star/awt/grid/UnoControlGridModel.idl
@@ -66,7 +66,7 @@ published service UnoControlGridModel
<p>The value given here is ignored if #ShowColumnHeader is <FALSE/>.</p>
- <p>If the property is <void/>, the grid control shall automatically determine a height which conveniently allows,
+ <p>If the property is `VOID`, the grid control shall automatically determine a height which conveniently allows,
according to the used font, to display one line of text.</p>
*/
[property, maybevoid] long ColumnHeaderHeight;
diff --git a/offapi/com/sun/star/awt/grid/XGridColumn.idl b/offapi/com/sun/star/awt/grid/XGridColumn.idl
index 5858548e7456..a8d05201c2e2 100644
--- a/offapi/com/sun/star/awt/grid/XGridColumn.idl
+++ b/offapi/com/sun/star/awt/grid/XGridColumn.idl
@@ -90,7 +90,7 @@ published interface XGridColumn
*/
[attribute] ::com::sun::star::style::HorizontalAlignment HorizontalAlign;
- /** A title is displayed in the column header row if <method>UnoControlGridModel::ShowRowHeader</method> is set to <true/>**/
+ /** A title is displayed in the column header row if <method>UnoControlGridModel::ShowRowHeader</method> is set to `TRUE`**/
[attribute] string Title;
/** is the help text associated with the column.
diff --git a/offapi/com/sun/star/awt/grid/XGridRowSelection.idl b/offapi/com/sun/star/awt/grid/XGridRowSelection.idl
index 78e3a98ccbcc..54e188ebde05 100644
--- a/offapi/com/sun/star/awt/grid/XGridRowSelection.idl
+++ b/offapi/com/sun/star/awt/grid/XGridRowSelection.idl
@@ -67,7 +67,7 @@ published interface XGridRowSelection
/** Returns whether rows are selected.
@returns
- <true/> if and only if at least one row is selected.
+ `TRUE` if and only if at least one row is selected.
*/
boolean hasSelectedRows();
@@ -75,10 +75,10 @@ published interface XGridRowSelection
@param RowIndex
the index of a row. If the value does not denote a valid row index, i.e. is smaller than <code>0</code>
- or greater than the number of rows, this is silently ignored, and <false/> is returned.
+ or greater than the number of rows, this is silently ignored, and `FALSE` is returned.
@returns
- <true/> if and only if there is a row with the given index, and it is selected currently.
+ `TRUE` if and only if there is a row with the given index, and it is selected currently.
*/
boolean isRowSelected( [in] long RowIndex );