diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-28 00:27:46 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:04 +0200 |
commit | 6e1d239ae04bbb1b639ae8d04c59d3375f867712 (patch) | |
tree | f4ce26e51900176ae95320652fb31404144a54eb /udkapi | |
parent | be7f280ea7034a1cb1195a3d27b51d1b9626b905 (diff) |
*api: convert <true/> <false/> <void/>
sed -i 's,<\(true\|false\|void\)/>,`\U\1`,g'
Change-Id: I87a6e81ff22b47ea979322d01c49350892d3945f
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/beans/PropertyChangeEvent.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/beans/PropertyValue.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/java/XJavaThreadRegister_11.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/java/XJavaVM.idl | 12 | ||||
-rw-r--r-- | udkapi/com/sun/star/task/XInteractionHandler2.idl | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/udkapi/com/sun/star/beans/PropertyChangeEvent.idl b/udkapi/com/sun/star/beans/PropertyChangeEvent.idl index 8e9a56cb3ff7..80b6e75d8cf5 100644 --- a/udkapi/com/sun/star/beans/PropertyChangeEvent.idl +++ b/udkapi/com/sun/star/beans/PropertyChangeEvent.idl @@ -46,7 +46,7 @@ published struct PropertyChangeEvent: com::sun::star::lang::EventObject string PropertyName; - /** contains <true/> if further events in the same transaction occur. + /** contains `TRUE` if further events in the same transaction occur. */ boolean Further; diff --git a/udkapi/com/sun/star/beans/PropertyValue.idl b/udkapi/com/sun/star/beans/PropertyValue.idl index 0d86568ef0a0..842a57e4d9d4 100644 --- a/udkapi/com/sun/star/beans/PropertyValue.idl +++ b/udkapi/com/sun/star/beans/PropertyValue.idl @@ -48,7 +48,7 @@ published struct PropertyValue long Handle; - /** contains the value of the property or <void/>, + /** contains the value of the property or `VOID`, if no value is available. */ any Value; diff --git a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl index 5337675567d6..ccaad83132e7 100644 --- a/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl +++ b/udkapi/com/sun/star/java/XJavaThreadRegister_11.idl @@ -32,7 +32,7 @@ module com { module sun { module star { module java { */ published interface XJavaThreadRegister_11: com::sun::star::uno::XInterface { - /** returns <true/> if the current thread is already attached to the VM otherwise <false/>. + /** returns `TRUE` if the current thread is already attached to the VM otherwise `FALSE`. */ boolean isThreadAttached(); diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl index 8831f7f0f201..30f7e5c7de0b 100644 --- a/udkapi/com/sun/star/java/XJavaVM.idl +++ b/udkapi/com/sun/star/java/XJavaVM.idl @@ -45,7 +45,7 @@ published interface XJavaVM: com::sun::star::uno::XInterface `long` or `hyper` integer (depending on the platform). If the <code>processID</code> does not match the current process, or if the VM cannot be instantiated for whatever reason, a - <void/> `any` is returned.</p> + `VOID` `any` is returned.</p> <p>If the <code>processID</code> has an additional 17th byte of value <code>0</code>, the returned `any` contains a @@ -57,7 +57,7 @@ published interface XJavaVM: com::sun::star::uno::XInterface pointer should be converted into a reference-counted reference as soon as possible). Again, if the first 16 bytes of the <code>processID</code> do not match the current process, or if the VM - cannot be instantiated for whatever reason, a <void/> `any` + cannot be instantiated for whatever reason, a `VOID` `any` is returned.</p> <p>If the <code>processID</code> has an additional 17th byte of @@ -69,7 +69,7 @@ published interface XJavaVM: com::sun::star::uno::XInterface com::sun::star::java::XJavaVM is valid. Again, if the first 16 bytes of the <code>processID</code> do not match the current process, or if the VM cannot be instantiated for whatever - reason, a <void/> `any` is returned.</p> + reason, a `VOID` `any` is returned.</p> <p>The first form (returning a JNI <code>JavaVM</code> pointer) is mainly for backwards compatibility, new code should use the second form @@ -92,15 +92,15 @@ published interface XJavaVM: com::sun::star::uno::XInterface @return On success, the `any` contains a pointer represented as `long` or `hyper`, otherwise the `any` - is <void/>. + is `VOID`. */ any getJavaVM( [in] sequence<byte> processID ); - /** returns <true/> if the VM is started successfully, otherwise <false/>. + /** returns `TRUE` if the VM is started successfully, otherwise `FALSE`. */ boolean isVMStarted(); - /** Returns <true/> if the VM is enabled. + /** Returns `TRUE` if the VM is enabled. <p>It is only possible to get the VM, if this method return 0. </p> */ diff --git a/udkapi/com/sun/star/task/XInteractionHandler2.idl b/udkapi/com/sun/star/task/XInteractionHandler2.idl index 29a15fb109ed..2814710828ee 100644 --- a/udkapi/com/sun/star/task/XInteractionHandler2.idl +++ b/udkapi/com/sun/star/task/XInteractionHandler2.idl @@ -40,7 +40,7 @@ published interface XInteractionHandler2 : com::sun::star::task::XInteractionHan @param Request the inteaction request to handle. - @return <true/>, if the handler handled the request, <false/> otherwise. + @return `TRUE`, if the handler handled the request, `FALSE` otherwise. */ boolean handleInteractionRequest( [in] com::sun::star::task::XInteractionRequest Request ); |