diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-30 17:02:37 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:08 +0200 |
commit | 8a3543340fc8026121a7e4d681b3fce7c920bc1f (patch) | |
tree | 3ed60f1879838b3c4b5cc5d542b94d2dba781182 /offapi/com/sun/star/i18n | |
parent | 48661084104b5d52f7421909131e153639e653f2 (diff) |
*api: fix a bunch of "illegal" and "empty" tags
Apparently doxygen doesn't like XML-style empty elements.
Change-Id: I0fe8105a196fa3cf5b980f0b6f18933adf8a1d53
Diffstat (limited to 'offapi/com/sun/star/i18n')
-rw-r--r-- | offapi/com/sun/star/i18n/CalendarDisplayCode.idl | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/i18n/XExtendedCalendar.idl | 4 | ||||
-rw-r--r-- | offapi/com/sun/star/i18n/XTransliteration.idl | 24 |
3 files changed, 15 insertions, 15 deletions
diff --git a/offapi/com/sun/star/i18n/CalendarDisplayCode.idl b/offapi/com/sun/star/i18n/CalendarDisplayCode.idl index 6202b865bef1..b499f01a1b2d 100644 --- a/offapi/com/sun/star/i18n/CalendarDisplayCode.idl +++ b/offapi/com/sun/star/i18n/CalendarDisplayCode.idl @@ -31,7 +31,7 @@ module com { module sun { module star { module i18n { <p> The examples given are for an English Gregorian calendar, note that other calendars or locales may return completely different strings, for example not a four digit year but a CJK name instead. - <p/> + </p> @since OOo 1.1.2 */ diff --git a/offapi/com/sun/star/i18n/XExtendedCalendar.idl b/offapi/com/sun/star/i18n/XExtendedCalendar.idl index 587cb3e48655..07ae7917499c 100644 --- a/offapi/com/sun/star/i18n/XExtendedCalendar.idl +++ b/offapi/com/sun/star/i18n/XExtendedCalendar.idl @@ -50,13 +50,13 @@ published interface XExtendedCalendar : ::com::sun::star::i18n::XCalendar how many digits that will have. For example, a short year display string will normally be two digits with a Gregorian calendar, but with a Jewish calendar it will have three - digits. <p/> + digits. </p> @param nCalendarDisplayCode One of CalendarDisplayCode @param nNativeNumberMode - One of NativeNumberMode. <br/> + One of NativeNumberMode. <br> This argument designates the basic transliteration mode as if specified for the year representation. However, depending on the locale, different conversions for year and month, for diff --git a/offapi/com/sun/star/i18n/XTransliteration.idl b/offapi/com/sun/star/i18n/XTransliteration.idl index 4c4867782bae..8e50e6baa794 100644 --- a/offapi/com/sun/star/i18n/XTransliteration.idl +++ b/offapi/com/sun/star/i18n/XTransliteration.idl @@ -35,11 +35,11 @@ module com { module sun { module star { module i18n { not always a one to one mapping between characters. Transliteration modules are primarily used by collation, and search and replace modules to perform approximate search. It can also be used to format - the numbers in different numbering systems. <p/> + the numbers in different numbering systems. </p> <p> In order to select transliteration modules for different purposes, they are classified with attributes of - TransliterationType. <p/> + TransliterationType. </p> <p> For Western languages there would be three transliteration modules available to compare two mixed case strings: upper to lower, @@ -201,11 +201,11 @@ published interface XTransliteration: com::sun::star::uno::XInterface TransliterationType IGNORE attribute. </p> <p> Returns the number of matched code points in any case, even if - strings are not equal, for example: <br/> - equals( "a", 0, 1, nMatch1, "aaa", 0, 3, nMatch2 ) <br/> - returns `FALSE` and nMatch:=1 and nMatch2:=1 <br/> - equals( "aab", 0, 3, nMatch1, "aaa", 0, 3, nMatch2 ) <br/> - returns `FALSE` and nMatch:=2 and nMatch2:=2 <br/> </p> + strings are not equal, for example: <br> + equals( "a", 0, 1, nMatch1, "aaa", 0, 3, nMatch2 ) <br> + returns `FALSE` and nMatch:=1 and nMatch2:=1 <br> + equals( "aab", 0, 3, nMatch1, "aaa", 0, 3, nMatch2 ) <br> + returns `FALSE` and nMatch:=2 and nMatch2:=2 <br> </p> @param aStr1 First string to match. @@ -233,7 +233,7 @@ published interface XTransliteration: com::sun::star::uno::XInterface @returns `TRUE` if the substrings are equal per this - transliteration <br/> + transliteration <br> `FALSE` else. */ @@ -283,8 +283,8 @@ published interface XTransliteration: com::sun::star::uno::XInterface Length (from offset) of the second substring. @returns - 1 if the first substring is greater than the second substring <br/> - 0 if the first substring is equal to the second substring <br/> + 1 if the first substring is greater than the second substring <br> + 0 if the first substring is equal to the second substring <br> -1 if the first substring is less than the second substring */ long compareSubstring( [in] string aStr1, [in] long nOff1, [in] long nLen1, @@ -294,8 +294,8 @@ published interface XTransliteration: com::sun::star::uno::XInterface strings before comparing them. @returns - 1 if the first string is greater than the second string <br/> - 0 if the first string is equal to the second string <br/> + 1 if the first string is greater than the second string <br> + 0 if the first string is equal to the second string <br> -1 if the first string is less than the second string */ long compareString( [in] string aStr1, [in] string aStr2 ); |