diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-28 00:44:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:05 +0200 |
commit | 928b8640c0d1a9c49249100efbdd70f8c1090b07 (patch) | |
tree | d4f2388c89d137d62bced7b9e8339f964d3632ad /udkapi/com/sun/star/beans | |
parent | 6e1d239ae04bbb1b639ae8d04c59d3375f867712 (diff) |
*api: convert <TRUE/> <FALSE/> <VOID/> <NULL/>
sed -i 's,<\(TRUE\|FALSE\|VOID\|NULL\)/>,`\1`,g'
Change-Id: Ia4df97ca809b00993530d67203bbe4ba7a072201
Diffstat (limited to 'udkapi/com/sun/star/beans')
6 files changed, 12 insertions, 12 deletions
diff --git a/udkapi/com/sun/star/beans/XHierarchicalPropertySet.idl b/udkapi/com/sun/star/beans/XHierarchicalPropertySet.idl index 78827af1fb3e..9230dcc28a5e 100644 --- a/udkapi/com/sun/star/beans/XHierarchicalPropertySet.idl +++ b/udkapi/com/sun/star/beans/XHierarchicalPropertySet.idl @@ -68,7 +68,7 @@ published interface XHierarchicalPropertySet: com::sun::star::uno::XInterface supplies this interface. @returns - <NULL/> if the implementation cannot or will + `NULL` if the implementation cannot or will not provide information about the properties; otherwise the interface XHierarchicalPropertySetInfo is returned. */ diff --git a/udkapi/com/sun/star/beans/XHierarchicalPropertySetInfo.idl b/udkapi/com/sun/star/beans/XHierarchicalPropertySetInfo.idl index 6da27b74883d..7a21e4596f9b 100644 --- a/udkapi/com/sun/star/beans/XHierarchicalPropertySetInfo.idl +++ b/udkapi/com/sun/star/beans/XHierarchicalPropertySetInfo.idl @@ -61,8 +61,8 @@ published interface XHierarchicalPropertySetInfo: com::sun::star::uno::XInterfac /** @returns - <TRUE/> if a property with the specified name exists; - otherwise <FALSE/> is returned. + `TRUE` if a property with the specified name exists; + otherwise `FALSE` is returned. @param aHierarchicalName specifies the name of the property. diff --git a/udkapi/com/sun/star/beans/XIntrospectionAccess.idl b/udkapi/com/sun/star/beans/XIntrospectionAccess.idl index 85c9bc165534..3e1f8fef2c5c 100644 --- a/udkapi/com/sun/star/beans/XIntrospectionAccess.idl +++ b/udkapi/com/sun/star/beans/XIntrospectionAccess.idl @@ -132,9 +132,9 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface PropertyConcept</type>s. @returns - <TRUE/> if the property exists and accords to one of + `TRUE` if the property exists and accords to one of the demanded PropertyConcepts, otherwise - <FALSE/> is returned. + `FALSE` is returned. @param aName the name of the property. @@ -194,9 +194,9 @@ published interface XIntrospectionAccess: com::sun::star::uno::XInterface </type>s. @returns - <TRUE/> if the method exists and accords to one of + `TRUE` if the method exists and accords to one of the demanded MethodConcepts, otherwise - <FALSE/> is returned. + `FALSE` is returned. @param aName the name of the method. diff --git a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl index 01b05621683c..2c4a7502328a 100644 --- a/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl +++ b/udkapi/com/sun/star/beans/XMultiHierarchicalPropertySet.idl @@ -48,7 +48,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa supplies this interface. @returns - <NULL/> if the implementation cannot or will + `NULL` if the implementation cannot or will not provide information about the properties; otherwise the interface XHierarchicalPropertySetInfo is returned. @@ -107,7 +107,7 @@ published interface XMultiHierarchicalPropertySet: com::sun::star::uno::XInterfa <p> The order of the values in the returned sequence will be the same as the order of the names in the argument. </p> - <p> Unknown properties are ignored, in their place <NULL/> will be returned. </p> + <p> Unknown properties are ignored, in their place `NULL` will be returned. </p> @throws com::sun::star::lang::IllegalArgumentException if one of the names is not a well-formed diff --git a/udkapi/com/sun/star/beans/XPropertySetInfo.idl b/udkapi/com/sun/star/beans/XPropertySetInfo.idl index 550c54e6cb15..938eb5e55012 100644 --- a/udkapi/com/sun/star/beans/XPropertySetInfo.idl +++ b/udkapi/com/sun/star/beans/XPropertySetInfo.idl @@ -66,8 +66,8 @@ published interface XPropertySetInfo: com::sun::star::uno::XInterface /** @returns - <TRUE/> if a property with the specified name exist; - otherwise <FALSE/> is returned. + `TRUE` if a property with the specified name exist; + otherwise `FALSE` is returned. @param aName specifies the name of the property. diff --git a/udkapi/com/sun/star/beans/XPropertyWithState.idl b/udkapi/com/sun/star/beans/XPropertyWithState.idl index c75cb122f483..cde3739023b3 100644 --- a/udkapi/com/sun/star/beans/XPropertyWithState.idl +++ b/udkapi/com/sun/star/beans/XPropertyWithState.idl @@ -79,7 +79,7 @@ published interface XPropertyWithState: com::sun::star::uno::XInterface an object representing the default state of this object (as a property). <p> If no default exists, is not known or is void, - then the return value is <NULL/>. + then the return value is `NULL`. </p> @throws com::sun::star::lang::WrappedTargetException |