summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-30 22:38:04 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 12:01:08 +0200
commited993aafc928717ead4fae6b6dac8845771d8661 (patch)
treef6709f547eb3fb9ec9bc28ba9e588012161b9906 /offapi/com/sun/star/text
parentccc4a67c43d5eef31c95fce445dc55ec7ebad393 (diff)
*api: doxygen complains about lonely "." being list marker
Change-Id: Icaed7afe8f2463ffc16421642ff2e073fb4b7cc1
Diffstat (limited to 'offapi/com/sun/star/text')
-rw-r--r--offapi/com/sun/star/text/TextGraphicObject.idl4
-rw-r--r--offapi/com/sun/star/text/XParagraphAppend.idl2
-rw-r--r--offapi/com/sun/star/text/XTextAppend.idl2
-rw-r--r--offapi/com/sun/star/text/XTextContent.idl13
-rw-r--r--offapi/com/sun/star/text/XTextContentAppend.idl2
-rw-r--r--offapi/com/sun/star/text/XTextConvert.idl17
-rw-r--r--offapi/com/sun/star/text/XTextPortionAppend.idl2
7 files changed, 18 insertions, 24 deletions
diff --git a/offapi/com/sun/star/text/TextGraphicObject.idl b/offapi/com/sun/star/text/TextGraphicObject.idl
index 2fc4455662ee..32c7dde0db03 100644
--- a/offapi/com/sun/star/text/TextGraphicObject.idl
+++ b/offapi/com/sun/star/text/TextGraphicObject.idl
@@ -112,8 +112,8 @@ published service TextGraphicObject
It contains percentage values between -100 and +100.
*/
[property] boolean GraphicIsInverted;
- /** .
- It contains percentage values between -100 and +100.
+
+ /** contains percentage values between -100 and +100.
*/
[property] short Transparency;
/** contains the ColorMode as com::sun::star::drawing::ColorMode.
diff --git a/offapi/com/sun/star/text/XParagraphAppend.idl b/offapi/com/sun/star/text/XParagraphAppend.idl
index 153d345b8e06..5413a3f42ace 100644
--- a/offapi/com/sun/star/text/XParagraphAppend.idl
+++ b/offapi/com/sun/star/text/XParagraphAppend.idl
@@ -31,7 +31,7 @@
module com { module sun { module star { module text {
-/** .
+/** allows inserting and appending paragraphs.
*/
interface XParagraphAppend : com::sun::star::uno::XInterface
{
diff --git a/offapi/com/sun/star/text/XTextAppend.idl b/offapi/com/sun/star/text/XTextAppend.idl
index 1ae544e1ba5a..bac545c31d77 100644
--- a/offapi/com/sun/star/text/XTextAppend.idl
+++ b/offapi/com/sun/star/text/XTextAppend.idl
@@ -28,7 +28,7 @@
module com { module sun { module star { module text {
-/** .
+/** is a meta-interface for manipulating and inserting text.
*/
interface XTextAppend
{
diff --git a/offapi/com/sun/star/text/XTextContent.idl b/offapi/com/sun/star/text/XTextContent.idl
index 8b1a541e9f08..9cb28cb8829b 100644
--- a/offapi/com/sun/star/text/XTextContent.idl
+++ b/offapi/com/sun/star/text/XTextContent.idl
@@ -36,18 +36,11 @@ published interface XTextContent: com::sun::star::lang::XComponent
/** is called when this object gets embedded in a text.
-
-
<p>This acts like a multi-phase construction, thus the object may be
- invalid until it is attached to a text position. In general, this method
- is called from within
-
-
-
-
- .
-
+ invalid until it is attached to a text position. Usually this method
+ is called from within XText::insertTextContent().
</p>
+
<p>Both text objects and text content objects may only be connected
to each other if they are created by the same component. When
implementing new components, this behavior is deprecated.</p>
diff --git a/offapi/com/sun/star/text/XTextContentAppend.idl b/offapi/com/sun/star/text/XTextContentAppend.idl
index e737ccccfd2b..d28f6d62da3b 100644
--- a/offapi/com/sun/star/text/XTextContentAppend.idl
+++ b/offapi/com/sun/star/text/XTextContentAppend.idl
@@ -30,7 +30,7 @@
module com { module sun { module star { module text {
-/** .
+/** allows inserting and appending text content.
*/
interface XTextContentAppend : com::sun::star::uno::XInterface
{
diff --git a/offapi/com/sun/star/text/XTextConvert.idl b/offapi/com/sun/star/text/XTextConvert.idl
index 2ec1976abca0..b707489abcfb 100644
--- a/offapi/com/sun/star/text/XTextConvert.idl
+++ b/offapi/com/sun/star/text/XTextConvert.idl
@@ -34,21 +34,22 @@
module com { module sun { module star { module text {
-/** .
+/** allows converting selections of text to frames or tables.
*/
interface XTextConvert : com::sun::star::uno::XInterface
{
/** moves the paragraphs from Start to End into a text frame.
- <p>FrameProperties contains the properties of the to-be-created text frame.</p>
- @param
- .
+ @param Start start position of frame content
- @param
- .
- @return
+ @param End end position of frame content
+
+ @param FrameProperties
+ contains the properties of the to-be-created text frame
+
+ @return the newly created text frame
*/
::com::sun::star::text::XTextContent convertToTextFrame(
@@ -58,7 +59,7 @@ interface XTextConvert : com::sun::star::uno::XInterface
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::beans::UnknownPropertyException );
- /** .
+ /** converts the paragraphs marked in TableRanges into a table.
@param TableRanges contains the TextRange interfaces of the paragraphs, cells and rows of the table.
diff --git a/offapi/com/sun/star/text/XTextPortionAppend.idl b/offapi/com/sun/star/text/XTextPortionAppend.idl
index a44cf2dd40b2..b15ade7dd4e3 100644
--- a/offapi/com/sun/star/text/XTextPortionAppend.idl
+++ b/offapi/com/sun/star/text/XTextPortionAppend.idl
@@ -30,7 +30,7 @@
module com { module sun { module star { module text {
-/** .
+/** allows inserting and appending formatted text portions.
*/
interface XTextPortionAppend : com::sun::star::uno::XInterface
{