summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/system
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 21:47:17 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:00:59 +0200
commit944eb9902788d8afec9e3f0f65d3b680041e039b (patch)
tree3bbb926890561b81d9f6ae611be4677876799a36 /offapi/com/sun/star/system
parentcdbbbdce9956e290b4a849af332df55da1be8d36 (diff)
*api: convert <type>Foo</type>
Doxygen does not know type element and will recognize strings that contain capital letter (all API types do) automatically as type. This patch removes 15k doxygen warnings. git ls-files | grep \\.idl | xargs sed -i "s,<type>\([^<]\+\)</type>,\1," Change-Id: I45c07cf0b115d5fb5353f4aa9719839615ea1150
Diffstat (limited to 'offapi/com/sun/star/system')
-rw-r--r--offapi/com/sun/star/system/SimpleMailClientFlags.idl2
-rw-r--r--offapi/com/sun/star/system/SystemShellExecuteException.idl2
-rw-r--r--offapi/com/sun/star/system/SystemShellExecuteFlags.idl2
-rw-r--r--offapi/com/sun/star/system/XSimpleMailClient.idl6
-rw-r--r--offapi/com/sun/star/system/XSimpleMailClientSupplier.idl2
5 files changed, 7 insertions, 7 deletions
diff --git a/offapi/com/sun/star/system/SimpleMailClientFlags.idl b/offapi/com/sun/star/system/SimpleMailClientFlags.idl
index da8b7c1dc28d..c95abb1989cc 100644
--- a/offapi/com/sun/star/system/SimpleMailClientFlags.idl
+++ b/offapi/com/sun/star/system/SimpleMailClientFlags.idl
@@ -37,7 +37,7 @@ published constants SimpleMailClientFlags
/** Does not show the current configured system mail client, but sends
the mail without any further user interaction.
If this flag is specified, a recipient address must have been
- specified for the given <type>XSimpleMailMessage</type>
+ specified for the given XSimpleMailMessage
object given to the method
<member scope="com::sun::star::system">XSimpleMailClient::sendSimpleMailMessage()</member>.
*/
diff --git a/offapi/com/sun/star/system/SystemShellExecuteException.idl b/offapi/com/sun/star/system/SystemShellExecuteException.idl
index 253fe6fa5676..5395da154f44 100644
--- a/offapi/com/sun/star/system/SystemShellExecuteException.idl
+++ b/offapi/com/sun/star/system/SystemShellExecuteException.idl
@@ -25,7 +25,7 @@
module com { module sun { module star { module system {
-/** May be thrown in cases of errors executing a command using the <type>SystemShellExecute</type> service.
+/** May be thrown in cases of errors executing a command using the SystemShellExecute service.
<member scope="com::sun::star::uno">Exception::Message</member> may contain a
system error message, but it is not mandatory.
The member PosixError specifies a POSIX conforming error code or -1 for
diff --git a/offapi/com/sun/star/system/SystemShellExecuteFlags.idl b/offapi/com/sun/star/system/SystemShellExecuteFlags.idl
index 27859666abd6..9a2923677ca5 100644
--- a/offapi/com/sun/star/system/SystemShellExecuteFlags.idl
+++ b/offapi/com/sun/star/system/SystemShellExecuteFlags.idl
@@ -23,7 +23,7 @@
module com { module sun { module star { module system {
-/** Different settings for the <type>SystemShellExecute</type> service.
+/** Different settings for the SystemShellExecute service.
*/
published constants SystemShellExecuteFlags
diff --git a/offapi/com/sun/star/system/XSimpleMailClient.idl b/offapi/com/sun/star/system/XSimpleMailClient.idl
index f332e54f97c7..4fdf47401c6b 100644
--- a/offapi/com/sun/star/system/XSimpleMailClient.idl
+++ b/offapi/com/sun/star/system/XSimpleMailClient.idl
@@ -35,14 +35,14 @@ module com { module sun { module star { module system {
published interface XSimpleMailClient: com::sun::star::uno::XInterface
{
/** Create a simple mail message object that implements the interface
- <type>XSimpleMailMessage</type>.
+ XSimpleMailMessage.
@returns
- An object that implements the <type>XSimpleMailMessage</type> interface.
+ An object that implements the XSimpleMailMessage interface.
*/
XSimpleMailMessage createSimpleMailMessage( );
/** Sends a given simple mail message object that implements the interface
- <type>XSimpleMailMessage</type>.
+ XSimpleMailMessage.
@param xSimpleMailMessage
Specifies a configured mail object to be sent.
diff --git a/offapi/com/sun/star/system/XSimpleMailClientSupplier.idl b/offapi/com/sun/star/system/XSimpleMailClientSupplier.idl
index eadbe45ba2a1..04f87d347666 100644
--- a/offapi/com/sun/star/system/XSimpleMailClientSupplier.idl
+++ b/offapi/com/sun/star/system/XSimpleMailClientSupplier.idl
@@ -37,7 +37,7 @@ module com { module sun { module star { module system {
published interface XSimpleMailClientSupplier: com::sun::star::uno::XInterface
{
/** Allows a client to query for an object that implements
- <type>XSimpleMailClient</type>.
+ XSimpleMailClient.
@returns
An interface to a simple mail client if there is one available on the system
or an empty reference else.