diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-27 23:45:24 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:02 +0200 |
commit | d11a7b5eb1b127c4f60367ecaeb64868313002d6 (patch) | |
tree | 4333a00f2ffd957219cfa355c54cc62fc7cd670a /offapi/com/sun/star/embed | |
parent | 4e70bdec9657f60c2bc9f4e8ad22c3625cc009a4 (diff) |
*api: convert <const>
This one is apparently often abused to link to a constant group, while
it can only link to constants within a group.
sed -i "s,<const>\([^<]\+\)</const>,\1,g"
Change-Id: Ic3d8099751340e4b046298c861bb659beb351eaf
Diffstat (limited to 'offapi/com/sun/star/embed')
-rw-r--r-- | offapi/com/sun/star/embed/ElementModes.idl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/offapi/com/sun/star/embed/ElementModes.idl b/offapi/com/sun/star/embed/ElementModes.idl index f4bf21f32768..aaf004c9d3b0 100644 --- a/offapi/com/sun/star/embed/ElementModes.idl +++ b/offapi/com/sun/star/embed/ElementModes.idl @@ -27,7 +27,7 @@ module com { module sun { module star { module embed { <p> The modes can be combined by "or" operation. - <const>ElementModes::READ</const> and <const>ElementModes::WRITE</const> + ElementModes::READ and ElementModes::WRITE are base modes. A result mode must include one of base modes. </p> @@ -44,8 +44,8 @@ published constants ElementModes <p> This mode is ignored for Storage elements. This flag makes sense only in combination with - <const>ElementModes::READ</const> and/or - <const>ElementModes::WRITE</const>. + ElementModes::READ and/or + ElementModes::WRITE. </p> */ const long SEEKABLE = 2; @@ -54,7 +54,7 @@ published constants ElementModes <p> This is just a combination of the previous two values. For storages - it is the same as <const>ElementModes::READ</const>. + it is the same as ElementModes::READ. </p> */ const long SEEKABLEREAD = 3; @@ -75,7 +75,7 @@ published constants ElementModes <p> This flag makes sense only in combination with - <const>ElementModes::WRITE</const>. + ElementModes::WRITE. </p> */ const long TRUNCATE = 8; @@ -85,7 +85,7 @@ published constants ElementModes <p> This flag makes sense only in combination with - <const>ElementModes::WRITE</const>. + ElementModes::WRITE. </p> */ const long NOCREATE = 16; |