diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-27 23:14:19 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:01 +0200 |
commit | 4bb43e1612ea3737fe53bb28ac830810b0a6a028 (patch) | |
tree | bd4949cc9c236626941b7995fb390a7090db37b9 /udkapi/com/sun/star/beans | |
parent | ea71a05840f53158f669182c6e93de9f8348bbe5 (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/com/sun/star/beans')
-rw-r--r-- | udkapi/com/sun/star/beans/PropertyState.idl | 8 |
1 files changed, 4 insertions, 4 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. |