summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xsd
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 /offapi/com/sun/star/xsd
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 'offapi/com/sun/star/xsd')
-rw-r--r--offapi/com/sun/star/xsd/String.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/offapi/com/sun/star/xsd/String.idl b/offapi/com/sun/star/xsd/String.idl
index 2806686997f0..be706ea6131e 100644
--- a/offapi/com/sun/star/xsd/String.idl
+++ b/offapi/com/sun/star/xsd/String.idl
@@ -34,22 +34,22 @@ service String
/** specifies the length of the string
- <p>Note that you cannot specify <member>Length</member> together
- with <member>MinLength</member> or <member>MaxLength</member>.</p>
+ <p>Note that you cannot specify #Length together
+ with #MinLength or #MaxLength.</p>
*/
[property, maybevoid] long Length;
/** specifies the minimum length of the string
- <p>Note that you cannot specify <member>MinLength</member> together
- with <member>Length</member>.</p>
+ <p>Note that you cannot specify #MinLength together
+ with #Length.</p>
*/
[property, maybevoid] long MinLength;
/** specifies the maximum length of the string
- <p>Note that you cannot specify <member>MaxLength</member> together
- with <member>Length</member>.</p>
+ <p>Note that you cannot specify #MaxLength together
+ with #Length.</p>
*/
[property, maybevoid] long MaxLength;
};