summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XWordCursor.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/text/XWordCursor.idl')
-rw-r--r--offapi/com/sun/star/text/XWordCursor.idl16
1 files changed, 8 insertions, 8 deletions
diff --git a/offapi/com/sun/star/text/XWordCursor.idl b/offapi/com/sun/star/text/XWordCursor.idl
index a8621a8c061a..52c877def965 100644
--- a/offapi/com/sun/star/text/XWordCursor.idl
+++ b/offapi/com/sun/star/text/XWordCursor.idl
@@ -43,12 +43,12 @@ published interface XWordCursor: com::sun::star::text::XTextCursor
/** moves the cursor to the next word.
- <p>Note: the function returning <true/> does not necessarily mean
+ <p>Note: the function returning `TRUE` does not necessarily mean
that the cursor is located at the next word, or any word at all!
This may happen for example if it travels over empty paragraphs.</p>
@returns
- <true/> if the cursor was moved. It returns <false/> it the
+ `TRUE` if the cursor was moved. It returns `FALSE` it the
cursor can not advance further.
*/
boolean gotoNextWord( [in] boolean bExpand );
@@ -56,12 +56,12 @@ published interface XWordCursor: com::sun::star::text::XTextCursor
/** moves the cursor to the previous word.
- <p>Note: the function returning <true/> does not necessarily mean
+ <p>Note: the function returning `TRUE` does not necessarily mean
that the cursor is located at the previous word, or any word at all!
This may happen for example if it travels over empty paragraphs.</p>
@returns
- <true/> if the cursor was moved. It returns <false/> it the
+ `TRUE` if the cursor was moved. It returns `FALSE` it the
cursor can not advance further.
*/
boolean gotoPreviousWord( [in] boolean bExpand );
@@ -70,8 +70,8 @@ published interface XWordCursor: com::sun::star::text::XTextCursor
/** moves the cursor to the end of the current word.
@returns
- <true/> if the cursor is now at the end of a word,
- <false/> otherwise. If <false/> was returned the cursor
+ `TRUE` if the cursor is now at the end of a word,
+ `FALSE` otherwise. If `FALSE` was returned the cursor
will remain at its original position.
*/
boolean gotoEndOfWord( [in] boolean bExpand );
@@ -80,8 +80,8 @@ published interface XWordCursor: com::sun::star::text::XTextCursor
/** moves the cursor to the start of the current word.
@returns
- <true/> if the cursor is now at the start of a word,
- <false/> otherwise. If <false/> was returned the cursor
+ `TRUE` if the cursor is now at the start of a word,
+ `FALSE` otherwise. If `FALSE` was returned the cursor
will remain at its original position.
*/
boolean gotoStartOfWord( [in] boolean bExpand );