summaryrefslogtreecommitdiff
path: root/udkapi
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-27 23:14:19 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:01 +0200
commit4bb43e1612ea3737fe53bb28ac830810b0a6a028 (patch)
treebd4949cc9c236626941b7995fb390a7090db37b9 /udkapi
parentea71a05840f53158f669182c6e93de9f8348bbe5 (diff)
*api: replace <member>Foo</member>
These member variables need a # prefix. sed -i "s,<member>\([^<:]\+[^)]\)</member>,#\1,g" Change-Id: I721b90f4edae32b5a362479bdbd60423f6427364
Diffstat (limited to 'udkapi')
-rw-r--r--udkapi/com/sun/star/beans/PropertyState.idl8
-rw-r--r--udkapi/com/sun/star/bridge/oleautomation/NamedArgument.idl2
2 files changed, 5 insertions, 5 deletions
diff --git a/udkapi/com/sun/star/beans/PropertyState.idl b/udkapi/com/sun/star/beans/PropertyState.idl
index 414b82a2b510..f005d1ca6212 100644
--- a/udkapi/com/sun/star/beans/PropertyState.idl
+++ b/udkapi/com/sun/star/beans/PropertyState.idl
@@ -42,7 +42,7 @@ published enum PropertyState
/** The value of the property is stored in the PropertySet itself.
<p>The property value must be available and of the specified type.
- If the <member>PropertyAttribute</member> field in the struct
+ If the #PropertyAttribute field in the struct
Property contains <const>PropertyAttribute::MAYBEVOID</const>,
then the value may be void. </p>
*/
@@ -51,11 +51,11 @@ published enum PropertyState
/** The value of the property is available from a master (e.g., template).
- <p>The <member>PropertyAttribute</member> field in the struct
+ <p>The #PropertyAttribute field in the struct
Property must contain the
<const>PropertyAttribute::MAYBEDEFAULT</const> flag. The property
value must be available and of the specified type. If the
- <member>PropertyAttribute</member> field in the struct Property
+ #PropertyAttribute field in the struct Property
contains <const>PropertyAttribute::MAYBEVOID</const>, then the
value may be void. </p>
*/
@@ -65,7 +65,7 @@ published enum PropertyState
/** The value of the property is only a recommendation because there
are multiple values for this property (e.g., from a multi selection).
- <p>The <member>PropertyAttribute</member> field in the struct
+ <p>The #PropertyAttribute field in the struct
Property must contain the
<const>PropertyAttribute::MAYBEAMBIGUOUS</const> flag. The
property value must be available and of the specified type.
diff --git a/udkapi/com/sun/star/bridge/oleautomation/NamedArgument.idl b/udkapi/com/sun/star/bridge/oleautomation/NamedArgument.idl
index 3fc066499b7f..f084bbbffc69 100644
--- a/udkapi/com/sun/star/bridge/oleautomation/NamedArgument.idl
+++ b/udkapi/com/sun/star/bridge/oleautomation/NamedArgument.idl
@@ -44,7 +44,7 @@ struct NamedArgument
string Name;
/** The value of the argument whoose name is the one as contained in the
- member <member>Name</member>.
+ member #Name.
*/
any Value;
};