diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-05-31 00:06:50 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:09 +0200 |
commit | bcfcd0eb564e7d5d706f47dab30b074fd6233d97 (patch) | |
tree | 1a42fa6c3783be6fc34dcd48e411dbb78c25aa64 /offapi/com/sun/star/text | |
parent | b24ef80b521ce1e40fcf80edba4a158d90e42866 (diff) |
*api: fix up merge conflict damage
Change-Id: I3a1281c756305f16d193210839ca6b826662698e
Diffstat (limited to 'offapi/com/sun/star/text')
-rw-r--r-- | offapi/com/sun/star/text/ViewSettings.idl | 2 | ||||
-rw-r--r-- | offapi/com/sun/star/text/XAutoTextContainer.idl | 19 |
2 files changed, 11 insertions, 10 deletions
diff --git a/offapi/com/sun/star/text/ViewSettings.idl b/offapi/com/sun/star/text/ViewSettings.idl index e2f5db497c09..4b626a9d5161 100644 --- a/offapi/com/sun/star/text/ViewSettings.idl +++ b/offapi/com/sun/star/text/ViewSettings.idl @@ -248,7 +248,7 @@ published service ViewSettings */ [optional, property] long VerticalRulerMetric; //------------------------------------------------------------------------- - /** If this property is <TRUE/>, tips for document content are shown, + /** If this property is `TRUE`, tips for document content are shown, typically in a help balloon when the mouse is over the content. @since LibreOffice 4.1 diff --git a/offapi/com/sun/star/text/XAutoTextContainer.idl b/offapi/com/sun/star/text/XAutoTextContainer.idl index 06fd171e2201..a44fba34c54d 100644 --- a/offapi/com/sun/star/text/XAutoTextContainer.idl +++ b/offapi/com/sun/star/text/XAutoTextContainer.idl @@ -27,14 +27,14 @@ module com { module sun { module star { module text { -/** handles blocks of <type>AutoTextEntry</type>. +/** handles blocks of AutoTextEntry. @see AutoTextContainer */ published interface XAutoTextContainer: com::sun::star::container::XNameAccess { /** creates a new AutoText group. - @param aGroupName the name of the <type>AutoTextContainer</type> + @param aGroupName the name of the AutoTextContainer <p>The name must follow the pattern <code>groupname*pathid</code>, where:</p> @@ -46,7 +46,7 @@ published interface XAutoTextContainer: com::sun::star::container::XNameAccess <li><code>pathid</code> is a number (0 or 1) identifying the directory where the AutoText file is stored. Paths are stored in the Office configuration and accessed through - <member scope="com::sun::star::util">PathSettings::AutoText</member>. + com::sun::star::util::PathSettings::AutoText. <ul> <li>0 indicates the path of the <b>Office Basis</b> layer</li> <li>1 indicates the path of the <b>user</b> directory</li> @@ -54,15 +54,15 @@ published interface XAutoTextContainer: com::sun::star::container::XNameAccess </li> </ul> If only <code>groupname</code> is specified, the path defaults to 0, the - <b>Office Basis</b> layer.</br>Note that in some systems the user may lack of + <b>Office Basis</b> layer.<br>Note that in some systems the user may lack of write access to the Office Basis directory. - @example + Example: <ul> - <li><code>standard*0</code></br>the "standard" AutoTextGroup in the Office Basis layer</li> - <li><code>template</code></br>the "template" AutoTextGroup in the Office Basis layer</li> - <li><code>mytexts*1</code></br>the "mytexts" AutoTextGroup in the user directory</li> + <li><code>standard*0</code><br>the "standard" AutoTextGroup in the Office Basis layer</li> + <li><code>template</code><br>the "template" AutoTextGroup in the Office Basis layer</li> + <li><code>mytexts*1</code><br>the "mytexts" AutoTextGroup in the user directory</li> </ul> */ @@ -71,7 +71,8 @@ published interface XAutoTextContainer: com::sun::star::container::XNameAccess com::sun::star::container::ElementExistException ); /** deletes the specified AutoText group. - @param aGroupName see the documentation for <member>XAutoTextContainer::insertNewByName()</member> + @param aGroupName + see the documentation for XAutoTextContainer::insertNewByName() */ void removeByName( [in] string aGroupName ) raises( com::sun::star::container::NoSuchElementException ); |