summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/linguistic2
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-28 00:44:31 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:05 +0200
commit928b8640c0d1a9c49249100efbdd70f8c1090b07 (patch)
treed4f2388c89d137d62bced7b9e8339f964d3632ad /offapi/com/sun/star/linguistic2
parent6e1d239ae04bbb1b639ae8d04c59d3375f867712 (diff)
*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g' Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
Diffstat (limited to 'offapi/com/sun/star/linguistic2')
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionary.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionary.idl24
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryEntry.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XDictionaryList.idl18
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenatedWord.idl2
-rw-r--r--offapi/com/sun/star/linguistic2/XHyphenator.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl8
-rw-r--r--offapi/com/sun/star/linguistic2/XLinguServiceManager.idl4
-rw-r--r--offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl10
-rw-r--r--offapi/com/sun/star/linguistic2/XSpellChecker.idl6
-rw-r--r--offapi/com/sun/star/linguistic2/XSupportedLocales.idl2
12 files changed, 45 insertions, 45 deletions
diff --git a/offapi/com/sun/star/linguistic2/XConversionDictionary.idl b/offapi/com/sun/star/linguistic2/XConversionDictionary.idl
index 6c9890dcbccc..6951fdd2b6fd 100644
--- a/offapi/com/sun/star/linguistic2/XConversionDictionary.idl
+++ b/offapi/com/sun/star/linguistic2/XConversionDictionary.idl
@@ -76,14 +76,14 @@ published interface XConversionDictionary : com::sun::star::uno::XInterface
/** specifies whether the dictionary should be used or not .
@param bAcvtivate
- <TRUE/> if the dictionary should be used, <FALSE/> otherwise.
+ `TRUE` if the dictionary should be used, `FALSE` otherwise.
*/
void setActive( [in] boolean bActivate );
/**
@returns
- <TRUE/> if the dictionary is active, <FALSE/> otherwise.
+ `TRUE` if the dictionary is active, `FALSE` otherwise.
*/
boolean isActive();
diff --git a/offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl b/offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl
index 330c122faccd..541734c417db 100644
--- a/offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl
+++ b/offapi/com/sun/star/linguistic2/XConversionDictionaryList.idl
@@ -70,7 +70,7 @@ published interface XConversionDictionaryList : com::sun::star::uno::XInterface
@returns
an empty dictionary with the given name, locale and
conversion type.
- <NULL/> on failure.
+ `NULL` on failure.
@param aName
is the name of the dictionary (should be unique).
diff --git a/offapi/com/sun/star/linguistic2/XDictionary.idl b/offapi/com/sun/star/linguistic2/XDictionary.idl
index 7d95abb84509..f70ed85cea5a 100644
--- a/offapi/com/sun/star/linguistic2/XDictionary.idl
+++ b/offapi/com/sun/star/linguistic2/XDictionary.idl
@@ -60,14 +60,14 @@ published interface XDictionary : com::sun::star::container::XNamed
/** specifies whether the dictionary should be used or not .
@param bAcvtivate
- <TRUE/> if the dictionary should be used, <FALSE/> otherwise.
+ `TRUE` if the dictionary should be used, `FALSE` otherwise.
*/
void setActive( [in] boolean bActivate );
/**
@returns
- <TRUE/> if the dictionary is active, <FALSE/> otherwise.
+ `TRUE` if the dictionary is active, `FALSE` otherwise.
*/
boolean isActive();
@@ -110,7 +110,7 @@ published interface XDictionary : com::sun::star::container::XNamed
/** is used to add an entry to the dictionary.
<P>If an entry already exists, the dictionary remains unchanged
- and <FALSE/> will be returned.</P>
+ and `FALSE` will be returned.</P>
<P>In positive dictionaries only positive entries
can be made, and in negative ones only negative entries.</P>
@@ -119,7 +119,7 @@ published interface XDictionary : com::sun::star::container::XNamed
the entry to be added.
@returns
- <TRUE/> if the entry was successfully added <FALSE/> otherwise.
+ `TRUE` if the entry was successfully added `FALSE` otherwise.
@see com::sun::star::linguistic2::XDictionaryEntry
@see com::sun::star::linguistic2::DictionaryType
@@ -130,7 +130,7 @@ published interface XDictionary : com::sun::star::container::XNamed
/** is used to make an entry in the dictionary.
<P>If an entry already exists, the dictionary remains unchanged
- and <FALSE/> will be returned.</P>
+ and `FALSE` will be returned.</P>
<P>In positive dictionaries only positive entries
can be made, and in negative ones only negative entries.</P>
@@ -146,7 +146,7 @@ published interface XDictionary : com::sun::star::container::XNamed
be used when replacing aWord. Otherwise, it is undefined.
@returns
- <TRUE/> if the entry was successfully added, <FALSE/> otherwise.
+ `TRUE` if the entry was successfully added, `FALSE` otherwise.
@see com::sun::star::linguistic2::DictionaryType
*/
@@ -161,15 +161,15 @@ published interface XDictionary : com::sun::star::container::XNamed
the word matching the entry to be removed.
@returns
- <TRUE/> if the entry was successfully removed, <FALSE/>
+ `TRUE` if the entry was successfully removed, `FALSE`
otherwise (especially if the entry was not found).
*/
boolean remove( [in] string aWord );
/**
@returns
- <TRUE/> if the dictionary is full and no further
- entry can be made, <FALSE/> otherwise.
+ `TRUE` if the dictionary is full and no further
+ entry can be made, `FALSE` otherwise.
*/
boolean isFull();
@@ -201,7 +201,7 @@ published interface XDictionary : com::sun::star::container::XNamed
the entry to be made, that is, the object that wants notifications.
@returns
- <TRUE/> if the entry was successfully made, <FALSE/> otherwise.
+ `TRUE` if the entry was successfully made, `FALSE` otherwise.
If com::sun::star::lang::XEventListener::disposing() was called before,
it will always fail.
@@ -217,8 +217,8 @@ published interface XDictionary : com::sun::star::container::XNamed
the reference to the listening object to be removed.
@returns
- <TRUE/> if the object to be removed was found and removed,
- <FALSE/> if the object was not found in the list.
+ `TRUE` if the object to be removed was found and removed,
+ `FALSE` if the object was not found in the list.
@see com::sun::star::linguistic2::XDictionary::addDictionaryEventListener()
@see com::sun::star::linguistic2::XDictionaryEventListener
diff --git a/offapi/com/sun/star/linguistic2/XDictionaryEntry.idl b/offapi/com/sun/star/linguistic2/XDictionaryEntry.idl
index 475b773101c7..0dc4d73a1605 100644
--- a/offapi/com/sun/star/linguistic2/XDictionaryEntry.idl
+++ b/offapi/com/sun/star/linguistic2/XDictionaryEntry.idl
@@ -55,8 +55,8 @@ published interface XDictionaryEntry : com::sun::star::uno::XInterface
/**
@returns
- <TRUE/> if the word (entry) is a negative one and should not be
- used, <FALSE/> otherwise.
+ `TRUE` if the word (entry) is a negative one and should not be
+ used, `FALSE` otherwise.
*/
boolean isNegative();
diff --git a/offapi/com/sun/star/linguistic2/XDictionaryList.idl b/offapi/com/sun/star/linguistic2/XDictionaryList.idl
index 6d0ff70f82a5..63ec6a0ae0de 100644
--- a/offapi/com/sun/star/linguistic2/XDictionaryList.idl
+++ b/offapi/com/sun/star/linguistic2/XDictionaryList.idl
@@ -57,7 +57,7 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
@returns
the XDictionary with the specified name. If no such
- dictionary exists, <NULL/> will be returned.
+ dictionary exists, `NULL` will be returned.
@param aDictionaryName
specifies the name of the dictionary to look for.
@@ -73,8 +73,8 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
event listeners of that dictionary.</P>
@returns
- <TRUE/> if the dictionary was added successfully,
- <FALSE/> otherwise.
+ `TRUE` if the dictionary was added successfully,
+ `FALSE` otherwise.
@param xDictionary
the dictionary to be added.
@@ -91,7 +91,7 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
dictionary event listeners of the dictionary.</P>
@returns
- <TRUE/> if the dictionary was removed successfully, <FALSE/>
+ `TRUE` if the dictionary was removed successfully, `FALSE`
otherwise.
@param xDictionary
@@ -109,7 +109,7 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
com::sun::star::linguistic2::XDictionaryListEventListener::processDictionaryListEvent().</P>
@returns
- <TRUE/> if the entry was made, <FALSE/> otherwise.
+ `TRUE` if the entry was made, `FALSE` otherwise.
If com::sun::star::lang::XEventListener::disposing()
was called before, it will always fail.
@@ -117,7 +117,7 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
the object to be notified of dictionary-list events.
@param bReceiveVerbose
- <TRUE/> if the listener requires more detailed event
+ `TRUE` if the listener requires more detailed event
notification than usual.
@see com::sun::star::linguistic2::XDictionaryListEventListener
@@ -130,8 +130,8 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
/** removes an entry from the list of dictionary-list event listeners.
@returns
- <TRUE/> if the object to be removed was found and removed,
- <FALSE/> otherwise.
+ `TRUE` if the object to be removed was found and removed,
+ `FALSE` otherwise.
@param xListener
the object to be removed from the listener list.
@@ -194,7 +194,7 @@ published interface XDictionaryList : com::sun::star::uno::XInterface
@returns
an empty dictionary with the given name, language and type.
- <NULL/> on failure.
+ `NULL` on failure.
@param aName
is the name of the dictionary (should be unique).
diff --git a/offapi/com/sun/star/linguistic2/XHyphenatedWord.idl b/offapi/com/sun/star/linguistic2/XHyphenatedWord.idl
index 39c679452d62..0b03b11c57c0 100644
--- a/offapi/com/sun/star/linguistic2/XHyphenatedWord.idl
+++ b/offapi/com/sun/star/linguistic2/XHyphenatedWord.idl
@@ -82,7 +82,7 @@ published interface XHyphenatedWord : com::sun::star::uno::XInterface
word is different from the word that was hyphenated.</p>
@returns
- <TRUE/> if it is an alternative spelling, <FALSE/> otherwise.
+ `TRUE` if it is an alternative spelling, `FALSE` otherwise.
*/
boolean isAlternativeSpelling();
diff --git a/offapi/com/sun/star/linguistic2/XHyphenator.idl b/offapi/com/sun/star/linguistic2/XHyphenator.idl
index f07b5faa2aaa..96d095f77dc7 100644
--- a/offapi/com/sun/star/linguistic2/XHyphenator.idl
+++ b/offapi/com/sun/star/linguistic2/XHyphenator.idl
@@ -61,7 +61,7 @@ published interface XHyphenator : com::sun::star::linguistic2::XSupportedLocales
@returns
the XHyphenatedWord for the last valid hyphenation position
that is less than or equal to nMaxLeading - 1.
- If there is no such valid hyphenation position, <NULL/> is returned.
+ If there is no such valid hyphenation position, `NULL` is returned.
@param aWord
is the word to be hyphenated.
@@ -107,7 +107,7 @@ published interface XHyphenator : com::sun::star::linguistic2::XSupportedLocales
@returns
the information about the alternative spelling found at the
specified position. Otherwise, if no alternative spelling was
- found, <NULL/> is returned.
+ found, `NULL` is returned.
@param aWord
is the original word to be looked at for having an alternative
@@ -145,7 +145,7 @@ published interface XHyphenator : com::sun::star::linguistic2::XSupportedLocales
@returns
an com::sun::star::linguistic2::XPossibleHyphens
for the given word and language if there are any hyphenation
- positions. <NULL/> otherwise.
+ positions. `NULL` otherwise.
@param aWord
is the word for which information about the possible
diff --git a/offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl b/offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl
index c48b550278bf..9a5af31f1b0b 100644
--- a/offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl
+++ b/offapi/com/sun/star/linguistic2/XLinguServiceEventBroadcaster.idl
@@ -46,8 +46,8 @@ published interface XLinguServiceEventBroadcaster : com::sun::star::uno::XInterf
{
/**
@returns
- <TRUE/> if the listener was successfully added,
- <FALSE/> otherwise.
+ `TRUE` if the listener was successfully added,
+ `FALSE` otherwise.
@param xLstnr
the listener to be added.
@@ -57,8 +57,8 @@ published interface XLinguServiceEventBroadcaster : com::sun::star::uno::XInterf
/**
@returns
- <TRUE/> if the listener was successfully removed,
- <FALSE/> otherwise.
+ `TRUE` if the listener was successfully removed,
+ `FALSE` otherwise.
@param xLstnr
the listener to be removed.
diff --git a/offapi/com/sun/star/linguistic2/XLinguServiceManager.idl b/offapi/com/sun/star/linguistic2/XLinguServiceManager.idl
index 63c330384980..55faa12a9bb2 100644
--- a/offapi/com/sun/star/linguistic2/XLinguServiceManager.idl
+++ b/offapi/com/sun/star/linguistic2/XLinguServiceManager.idl
@@ -88,7 +88,7 @@ published interface XLinguServiceManager : com::sun::star::uno::XInterface
</P>
@returns
- <TRUE/> if the listener was successfully added, <FALSE/> otherwise.
+ `TRUE` if the listener was successfully added, `FALSE` otherwise.
@param xListener
the listener to be added.
@@ -99,7 +99,7 @@ published interface XLinguServiceManager : com::sun::star::uno::XInterface
/** removes a listener from the list of event listeners.
@returns
- <TRUE/> if the listener was successfully removed, <FALSE/> otherwise.
+ `TRUE` if the listener was successfully removed, `FALSE` otherwise.
@param xListener
the listener to be removed.
diff --git a/offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl b/offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl
index 54d5dbbc60e7..dd68e618754f 100644
--- a/offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl
+++ b/offapi/com/sun/star/linguistic2/XSearchableDictionaryList.idl
@@ -43,7 +43,7 @@ published interface XSearchableDictionaryList : com::sun::star::linguistic2::XDi
/** looks for an entry for a given word in the list of dictionaries.
@returns
- the dictionary entry that was found, <NULL/> otherwise.
+ the dictionary entry that was found, `NULL` otherwise.
@param aWord
the word (entry) to be looked for.
@@ -52,12 +52,12 @@ published interface XSearchableDictionaryList : com::sun::star::linguistic2::XDi
the language of the word to be looked for.
@param bSearchPosDic
- <TRUE/> if only positive dictionaries should be searched.
- <FALSE/> if only negative dictionaries should be searched.
+ `TRUE` if only positive dictionaries should be searched.
+ `FALSE` if only negative dictionaries should be searched.
@param bSpellEntry
- <TRUE/> if entries for purposes of spell checking are required.
- <FALSE/> if only entries for hyphenation purposes are required.
+ `TRUE` if entries for purposes of spell checking are required.
+ `FALSE` if only entries for hyphenation purposes are required.
*/
com::sun::star::linguistic2::XDictionaryEntry queryDictionaryEntry(
[in] string aWord ,
diff --git a/offapi/com/sun/star/linguistic2/XSpellChecker.idl b/offapi/com/sun/star/linguistic2/XSpellChecker.idl
index 0c6e9d3a7eed..8fb1525a7b23 100644
--- a/offapi/com/sun/star/linguistic2/XSpellChecker.idl
+++ b/offapi/com/sun/star/linguistic2/XSpellChecker.idl
@@ -41,8 +41,8 @@ published interface XSpellChecker : com::sun::star::linguistic2::XSupportedLocal
/** checks if a word is spelled correctly in a given language.
@returns
- <TRUE/> if the word is spelled correctly using
- the specified language, <FALSE/> otherwise.
+ `TRUE` if the word is spelled correctly using
+ the specified language, `FALSE` otherwise.
@param aWord
the word to be checked.
@@ -72,7 +72,7 @@ published interface XSpellChecker : com::sun::star::linguistic2::XSupportedLocal
language.
@returns
- <NULL/> if <var>aWord</var> is spelled correctly using
+ `NULL` if <var>aWord</var> is spelled correctly using
<var>aLocale</var>. Otherwise, an XSpellAlternatives
object with information about the reason of failure and, if available,
proposals for spelling alternatives will be returned.
diff --git a/offapi/com/sun/star/linguistic2/XSupportedLocales.idl b/offapi/com/sun/star/linguistic2/XSupportedLocales.idl
index 453ef2309489..025b5b449687 100644
--- a/offapi/com/sun/star/linguistic2/XSupportedLocales.idl
+++ b/offapi/com/sun/star/linguistic2/XSupportedLocales.idl
@@ -53,7 +53,7 @@ published interface XSupportedLocales : com::sun::star::uno::XInterface
by the object.
@returns
- <TRUE/> if the language is supported, otherwise <FALSE/>.
+ `TRUE` if the language is supported, otherwise `FALSE`.
*/
boolean hasLocale( [in] com::sun::star::lang::Locale aLocale );
};