From 928b8640c0d1a9c49249100efbdd70f8c1090b07 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sun, 28 Apr 2013 00:44:31 +0200 Subject: *api: convert sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g' Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201 --- offapi/com/sun/star/resource/XLocale.idl | 2 +- offapi/com/sun/star/resource/XStringResourceManager.idl | 4 ++-- offapi/com/sun/star/resource/XStringResourcePersistence.idl | 4 ++-- offapi/com/sun/star/resource/XStringResourceResolver.idl | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'offapi/com/sun/star/resource') diff --git a/offapi/com/sun/star/resource/XLocale.idl b/offapi/com/sun/star/resource/XLocale.idl index 799c616b295b..8efe7c50ded4 100644 --- a/offapi/com/sun/star/resource/XLocale.idl +++ b/offapi/com/sun/star/resource/XLocale.idl @@ -181,7 +181,7 @@ published interface XLocale: com::sun::star::uno::XInterface [in] com::sun::star::lang::Locale inLocale ); /** @returns - if the com::sun::star::lang::Locale l1 is equal to the + `TRUE` if the com::sun::star::lang::Locale l1 is equal to the other one.

A locale is deemed equal to another locale with identical diff --git a/offapi/com/sun/star/resource/XStringResourceManager.idl b/offapi/com/sun/star/resource/XStringResourceManager.idl index 208dac558a5a..3e53ef98bd1a 100644 --- a/offapi/com/sun/star/resource/XStringResourceManager.idl +++ b/offapi/com/sun/star/resource/XStringResourceManager.idl @@ -49,7 +49,7 @@ interface XStringResourceManager: com::sun::star::resource::XStringResourceResol /** Returns the resource's read only state - @return if the resource is read only, otherwise + @return `TRUE` if the resource is read only, otherwise `FALSE` */ boolean isReadOnly(); @@ -63,7 +63,7 @@ interface XStringResourceManager: com::sun::star::resource::XStringResourceResol

If true: If the exact locale that should be set is not available the method tries to find the closest match. E.g. if en_US is re- quired but not available, en would be the next choice. Finally - the default locale will be used . + the default locale will be used `TRUE`.

If false: If the exact locale that should be set is not available a com::sun::star::lang::IllegalArgumentException diff --git a/offapi/com/sun/star/resource/XStringResourcePersistence.idl b/offapi/com/sun/star/resource/XStringResourcePersistence.idl index 3e19e7dfc964..eff8f275866c 100644 --- a/offapi/com/sun/star/resource/XStringResourcePersistence.idl +++ b/offapi/com/sun/star/resource/XStringResourcePersistence.idl @@ -79,10 +79,10 @@ interface XStringResourcePersistence: com::sun::star::resource::XStringResourceM provides the current modify state of the StringResourceManager instance. @return - if the string table has changed since the last call to + `TRUE` if the string table has changed since the last call to store() or, if supported XStringResourceWithStorage::storeAsStorage. - if the table hasn't changed. + `FALSE` if the table hasn't changed. */ boolean isModified(); diff --git a/offapi/com/sun/star/resource/XStringResourceResolver.idl b/offapi/com/sun/star/resource/XStringResourceResolver.idl index e4967038702e..5f21022d7236 100644 --- a/offapi/com/sun/star/resource/XStringResourceResolver.idl +++ b/offapi/com/sun/star/resource/XStringResourceResolver.idl @@ -98,7 +98,7 @@ interface XStringResourceResolver: com::sun::star::util::XModifyBroadcaster @param ResourceID ID to specify the string inside the resource. - @return if an entry exists, otherwise + @return `TRUE` if an entry exists, otherwise `FALSE` */ boolean hasEntryForId( [in] string ResourceID ); @@ -119,7 +119,7 @@ interface XStringResourceResolver: com::sun::star::util::XModifyBroadcaster The locale has to match exactly with one of the locales provided by getLocales(). A closest match search is not supported. - @return if an entry exists, otherwise + @return `TRUE` if an entry exists, otherwise `FALSE` */ boolean hasEntryForIdAndLocale( [in] string ResourceID, [in] com::sun::star::lang::Locale locale ); -- cgit