The any carries an `unsigned long` (on 32-bit systems)
+ or an `unsigned hyper` (on 64-bit systems), which is
interpreted as a variant pointer. The any does not control the
lifetime of the represented variant. That implies that the caller
has the responsibility of freeing the OLE resources represented
diff --git a/udkapi/com/sun/star/bridge/oleautomation/Currency.idl b/udkapi/com/sun/star/bridge/oleautomation/Currency.idl
index 6186f7f530e9..f9bbcf91ee84 100644
--- a/udkapi/com/sun/star/bridge/oleautomation/Currency.idl
+++ b/udkapi/com/sun/star/bridge/oleautomation/Currency.idl
@@ -25,8 +25,8 @@ module com { module sun { module star { module bridge { module oleautomation
/** is the UNO representation of the Automation type CY
, also know
as CURRENCY
.
- A CY
could actually be represented as hyper in UNO
- and therefore a typedef from hyper to a currency type would do.
+ A CY
could actually be represented as `hyper` in UNO
+ and therefore a typedef from `hyper` to a currency type would do.
But a typedef cannot be expressed in all language bindings. In the case
where no typedefs are supported the actual type is used. That is, a
typedef'd currency type would be represented as long
in Java.
@@ -34,7 +34,7 @@ module com { module sun { module star { module bridge { module oleautomation
When calling Automation objects from UNO the distinction between
- hyper and a currency type is important. Therefore
+ `hyper` and a currency type is important. Therefore
Currency is declared as struct.
diff --git a/udkapi/com/sun/star/bridge/oleautomation/Date.idl b/udkapi/com/sun/star/bridge/oleautomation/Date.idl
index acc05d3e70ae..b65556a3b9d6 100644
--- a/udkapi/com/sun/star/bridge/oleautomation/Date.idl
+++ b/udkapi/com/sun/star/bridge/oleautomation/Date.idl
@@ -24,16 +24,16 @@ module com { module sun { module star { module bridge { module oleautomation
/** is the UNO representation of the Automation type DATE
.
- A DATE
could actually be representd asdouble in
- UNO and therefore a typedef from double to a date type would
+ A DATE
could actually be representd as`double` in
+ UNO and therefore a typedef from `double` to a date type would
do. But a typedef cannot be expressed in all language bindings. In the
case where no typedefs are supported the actual type is used. That is, a
typedef'd date type would be represented as double
in Java.
- The information that the double is a date type is lost.
+ The information that the `double` is a date type is lost.
When calling Automation objects from UNO the distinction between
- double and date type is important. Therefore Date
+ `double` and date type is important. Therefore Date
is declared as struct.
diff --git a/udkapi/com/sun/star/bridge/oleautomation/SCode.idl b/udkapi/com/sun/star/bridge/oleautomation/SCode.idl
index 4df11b61aefa..5791d9ddb7fb 100644
--- a/udkapi/com/sun/star/bridge/oleautomation/SCode.idl
+++ b/udkapi/com/sun/star/bridge/oleautomation/SCode.idl
@@ -26,8 +26,8 @@ module com { module sun { module star { module bridge { module oleautomation
A SCODE
is used to express errors in Automation.
- In UNO it could be represented by a long and therefore a typedef
- from long to a particular error type would do. But a typedef
+ In UNO it could be represented by a `long` and therefore a typedef
+ from `long` to a particular error type would do. But a typedef
cannot be expressed in all language bindings. In the case where no typedefs
are supported the actual type is used. That is, a typedef'd error type would
be represented as int
in Java. The information that the
@@ -35,7 +35,7 @@ module com { module sun { module star { module bridge { module oleautomation
When calling Automation objects from UNO the distinction between error type
- and long is important. Therefore the Scode is
+ and `long` is important. Therefore the Scode is
declared as struct.
diff --git a/udkapi/com/sun/star/container/XElementAccess.idl b/udkapi/com/sun/star/container/XElementAccess.idl
index a37c21448b07..a171cbf1110f 100644
--- a/udkapi/com/sun/star/container/XElementAccess.idl
+++ b/udkapi/com/sun/star/container/XElementAccess.idl
@@ -34,7 +34,7 @@ published interface XElementAccess: com::sun::star::uno::XInterface
{
/** @returns
- the type of the elements. void means that it is a
+ the type of the elements. `void` means that it is a
multi-type container and you cannot determine the exact types
with this interface.
*/
diff --git a/udkapi/com/sun/star/java/XJavaVM.idl b/udkapi/com/sun/star/java/XJavaVM.idl
index 43d141b7eb1a..8831f7f0f201 100644
--- a/udkapi/com/sun/star/java/XJavaVM.idl
+++ b/udkapi/com/sun/star/java/XJavaVM.idl
@@ -41,35 +41,35 @@ published interface XJavaVM: com::sun::star::uno::XInterface
If the VM is not already instantiated, it will be now.
If the processID
is a normal 16-byte ID, the returned
- any contains a JNI JavaVM
pointer as a
- long or hyper integer (depending on the
+ `any` contains a JNI JavaVM
pointer as a
+ `long` or `hyper` integer (depending on the
platform). If the processID
does not match the current
process, or if the VM cannot be instantiated for whatever reason, a
- any is returned.
+ `any` is returned.
If the processID
has an additional 17th byte of
- value 0
, the returned any contains a
+ value 0
, the returned `any` contains a
non–reference-counted pointer to a (reference-counted) instance of
the C++ jvmaccess::VirtualMachine
class, always represented
- as a hyper integer. The pointer is guaranteed to be valid
+ as a `hyper` integer. The pointer is guaranteed to be valid
as long as the reference to this
com::sun::star::java::XJavaVM is valid (but the
pointer should be converted into a reference-counted reference as soon
as possible). Again, if the first 16 bytes of the
processID
do not match the current process, or if the VM
- cannot be instantiated for whatever reason, a any
+ cannot be instantiated for whatever reason, a `any`
is returned.
If the processID
has an additional 17th byte of
- value 1
, the returned any contains a
+ value 1
, the returned `any` contains a
non–reference-counted pointer to a (reference-counted) instance of
the C++ jvmaccess::UnoVirtualMachine
class, always
- represented as a hyper integer. The pointer is guaranteed
+ represented as a `hyper` integer. The pointer is guaranteed
to be valid as long as the reference to this
com::sun::star::java::XJavaVM is valid. Again, if
the first 16 bytes of the processID
do not match the
current process, or if the VM cannot be instantiated for whatever
- reason, a any is returned.
+ reason, a `any` is returned.
The first form (returning a JNI JavaVM
pointer) is
mainly for backwards compatibility, new code should use the second form
@@ -90,8 +90,8 @@ published interface XJavaVM: com::sun::star::uno::XInterface
of value 0
or 1
.
@return
- On success, the any contains a pointer represented as
- long or hyper, otherwise the any
+ On success, the `any` contains a pointer represented as
+ `long` or `hyper`, otherwise the `any`
is .
*/
any getJavaVM( [in] sequence processID );
diff --git a/udkapi/com/sun/star/reflection/XParameter.idl b/udkapi/com/sun/star/reflection/XParameter.idl
index 935dbcf4c7e3..69dfe890038b 100644
--- a/udkapi/com/sun/star/reflection/XParameter.idl
+++ b/udkapi/com/sun/star/reflection/XParameter.idl
@@ -39,7 +39,7 @@ interface XParameter: XMethodParameter {
A rest parameter must always come last in a parameter list.
Currently, only service constructors can have rest parameters, and
- those rest parameters must be in parameters of type any.
+ those rest parameters must be in parameters of type `any`.
@return if and only if this parameter is a rest parameter
*/
diff --git a/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl b/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl
index 6f43537c93d0..6c7fa3987796 100644
--- a/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl
+++ b/udkapi/com/sun/star/reflection/XServiceConstructorDescription.idl
@@ -44,7 +44,7 @@ interface XServiceConstructorDescription {
Returns the constructor's name.
@return the constructor's name; for a default constructor, an empty
- string is returned
+ `string` is returned
*/
string getName();
diff --git a/udkapi/com/sun/star/script/XDefaultMethod.idl b/udkapi/com/sun/star/script/XDefaultMethod.idl
index fe86064f10ed..e60e675750bf 100644
--- a/udkapi/com/sun/star/script/XDefaultMethod.idl
+++ b/udkapi/com/sun/star/script/XDefaultMethod.idl
@@ -40,7 +40,7 @@ interface XDefaultMethod : ::com::sun::star::uno::XInterface
Returns the name of the default method
@return
- The string name of default method
+ The `string` name of default method
*/
string getDefaultMethodName();
diff --git a/udkapi/com/sun/star/script/XDefaultProperty.idl b/udkapi/com/sun/star/script/XDefaultProperty.idl
index 2647d7d9389f..beb98210fe85 100644
--- a/udkapi/com/sun/star/script/XDefaultProperty.idl
+++ b/udkapi/com/sun/star/script/XDefaultProperty.idl
@@ -44,7 +44,7 @@ interface XDefaultProperty : ::com::sun::star::uno::XInterface
Returns the name of the default property
@return
- The string name of default property
+ The `string` name of default property
*/
string getDefaultPropertyName();
diff --git a/udkapi/com/sun/star/script/XErrorQuery.idl b/udkapi/com/sun/star/script/XErrorQuery.idl
index 5d36f48740ef..fe07c73c64eb 100644
--- a/udkapi/com/sun/star/script/XErrorQuery.idl
+++ b/udkapi/com/sun/star/script/XErrorQuery.idl
@@ -30,7 +30,7 @@ interface XErrorQuery : ::com::sun::star::uno::XInterface
Returns whether this object has an error
@return
- boolean indicating an error or not
+ `boolean` indicating an error or not
*/
boolean hasError();
diff --git a/udkapi/com/sun/star/task/XInteractionRequest.idl b/udkapi/com/sun/star/task/XInteractionRequest.idl
index 673a82c2c6fa..a1bc790614cc 100644
--- a/udkapi/com/sun/star/task/XInteractionRequest.idl
+++ b/udkapi/com/sun/star/task/XInteractionRequest.idl
@@ -35,7 +35,7 @@ published interface XInteractionRequest: com::sun::star::uno::XInterface
@returns
an com::sun::star::uno::Exception, wrapped as an
- any.
+ `any`.
*/
any getRequest();
diff --git a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl
index ac9e4425cbbb..d146d91a80fd 100644
--- a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl
+++ b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTexpand.idl
@@ -30,7 +30,7 @@ published interface XUriSchemeParser;
The argument scheme
of method
com::sun::star::uri::XUriSchemeParser::parse() must
- always be equal to the string
+ always be equal to the `string`
"vnd.sun.star.expand"
, ignoring case. The objects returned by
com::sun::star::uri::XUriSchemeParser::parse()
implement
diff --git a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl
index e23b584ec445..861be045cc77 100644
--- a/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl
+++ b/udkapi/com/sun/star/uri/UriSchemeParser_vndDOTsunDOTstarDOTscript.idl
@@ -30,7 +30,7 @@ published interface XUriSchemeParser;
The argument scheme
of method
com::sun::star::uri::XUriSchemeParser::parse() must
- always be equal to the string
+ always be equal to the `string`
"vnd.sun.star.script"
, ignoring case. The objects returned by
com::sun::star::uri::XUriSchemeParser::parse()
implement
diff --git a/udkapi/com/sun/star/uri/XUriReference.idl b/udkapi/com/sun/star/uri/XUriReference.idl
index 54f4e2fd8650..5a555fc6256b 100644
--- a/udkapi/com/sun/star/uri/XUriReference.idl
+++ b/udkapi/com/sun/star/uri/XUriReference.idl
@@ -65,7 +65,7 @@ published interface XUriReference: com::sun::star::uno::XInterface {
@returns
the textual representation of the scheme part (with the exact spelling
retained; without the delimiting “:
”), if this
- is an absolute URI reference; otherwise, an empty string is
+ is an absolute URI reference; otherwise, an empty `string` is
returned.
*/
string getScheme();
@@ -111,7 +111,7 @@ published interface XUriReference: com::sun::star::uno::XInterface {
@returns
the textual representation of the authority part (with the exact spelling
retained), if this is a hierarchical URI reference that has an authority
- part; otherwise, an empty string is returned.
+ part; otherwise, an empty `string` is returned.
*/
string getAuthority();
@@ -161,7 +161,7 @@ published interface XUriReference: com::sun::star::uno::XInterface {
spelling retained, without any delimiting “/
”),
if this URI reference is hierarchical and has that many path segments;
otherwise, and in particular if index
is negative, an empty
- string is returned.
+ `string` is returned.
*/
string getPathSegment([in] long index);
@@ -180,7 +180,7 @@ published interface XUriReference: com::sun::star::uno::XInterface {
the textual representation of the query part (with the exact spelling
retained; without the delimiting “?
”), if this
is a hierarchical URI reference that has a query part; otherwise, an
- empty string is returned.
+ empty `string` is returned.
*/
string getQuery();
@@ -199,7 +199,7 @@ published interface XUriReference: com::sun::star::uno::XInterface {
the textual representation of the fragment part (with the exact spelling
retained; without the delimiting “#
”), if this
is a URI reference that has a fragment part; otherwise, an empty
- string is returned.
+ `string` is returned.
*/
string getFragment();
diff --git a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
index d4bf276e58e3..6a55b5155955 100644
--- a/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
+++ b/udkapi/com/sun/star/uri/XVndSunStarScriptUrl.idl
@@ -86,7 +86,7 @@ published interface XVndSunStarScriptUrl: com::sun::star::uno::XInterface {
@returns
if this URL has at least one parameter with the given key. In
- particular, if key
is an empty string,
+ particular, if key
is an empty `string`,
is returned.
*/
boolean hasParameter([in] string key);
@@ -100,7 +100,7 @@ published interface XVndSunStarScriptUrl: com::sun::star::uno::XInterface {
@returns
the non-escaped value of the first parameter with the given key. If
there is no parameter with the given key, or if key
is an
- empty string, an empty string is returned.
+ empty `string`, an empty `string` is returned.
*/
string getParameter([in] string key);
--
cgit