summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-03-26 13:07:03 +0200
committerMiklos Vajna <vmiklos@suse.cz>2012-03-26 13:08:19 +0200
commit2452e28a068803ad1ca910798339303cc52e45be (patch)
treef4d0da788c1da3e0ad77b243bafc0a1e1b8ee9ef /oox
parent7a19798c73fd39d8d69ff6364f0696e68cdd1381 (diff)
oox: fix doxygen syntax to avoid misleading output in ShapeTypeModel
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/vml/vmlshape.hxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/oox/inc/oox/vml/vmlshape.hxx b/oox/inc/oox/vml/vmlshape.hxx
index 8c6833728733..946af368f4cd 100644
--- a/oox/inc/oox/vml/vmlshape.hxx
+++ b/oox/inc/oox/vml/vmlshape.hxx
@@ -66,27 +66,27 @@ const sal_Int32 VML_CLIENTDATA_FORMULA = 4;
/** The shape model structure contains all properties shared by all types of shapes. */
struct ShapeTypeModel
{
- ::rtl::OUString maShapeId; /// Unique identifier of the shape.
- ::rtl::OUString maShapeName; /// Name of the shape, if present.
- OptValue< sal_Int32 > moShapeType; /// Builtin shape type identifier.
-
- OptValue< Int32Pair > moCoordPos; /// Top-left position of coordinate system for children scaling.
- OptValue< Int32Pair > moCoordSize; /// Size of coordinate system for children scaling.
- ::rtl::OUString maPosition; /// Position type of the shape.
- ::rtl::OUString maLeft; /// X position of the shape bounding box (number with unit).
- ::rtl::OUString maTop; /// Y position of the shape bounding box (number with unit).
- ::rtl::OUString maWidth; /// Width of the shape bounding box (number with unit).
- ::rtl::OUString maHeight; /// Height of the shape bounding box (number with unit).
- ::rtl::OUString maMarginLeft; /// X position of the shape bounding box to shape anchor (number with unit).
- ::rtl::OUString maMarginTop; /// Y position of the shape bounding box to shape anchor (number with unit).
- ::rtl::OUString maPositionVerticalRelative; /// The Y position is relative to this.
- sal_Bool mbAutoHeight; /// If true, the height value is a minimum value (mostly used for textboxes)
-
- StrokeModel maStrokeModel; /// Border line formatting.
- FillModel maFillModel; /// Shape fill formatting.
-
- OptValue< ::rtl::OUString > moGraphicPath; /// Path to a graphic for this shape.
- OptValue< ::rtl::OUString > moGraphicTitle; /// Title of the graphic.
+ ::rtl::OUString maShapeId; ///< Unique identifier of the shape.
+ ::rtl::OUString maShapeName; ///< Name of the shape, if present.
+ OptValue< sal_Int32 > moShapeType; ///< Builtin shape type identifier.
+
+ OptValue< Int32Pair > moCoordPos; ///< Top-left position of coordinate system for children scaling.
+ OptValue< Int32Pair > moCoordSize; ///< Size of coordinate system for children scaling.
+ ::rtl::OUString maPosition; ///< Position type of the shape.
+ ::rtl::OUString maLeft; ///< X position of the shape bounding box (number with unit).
+ ::rtl::OUString maTop; ///< Y position of the shape bounding box (number with unit).
+ ::rtl::OUString maWidth; ///< Width of the shape bounding box (number with unit).
+ ::rtl::OUString maHeight; ///< Height of the shape bounding box (number with unit).
+ ::rtl::OUString maMarginLeft; ///< X position of the shape bounding box to shape anchor (number with unit).
+ ::rtl::OUString maMarginTop; ///< Y position of the shape bounding box to shape anchor (number with unit).
+ ::rtl::OUString maPositionVerticalRelative; ///< The Y position is relative to this.
+ sal_Bool mbAutoHeight; ///< If true, the height value is a minimum value (mostly used for textboxes)
+
+ StrokeModel maStrokeModel; ///< Border line formatting.
+ FillModel maFillModel; ///< Shape fill formatting.
+
+ OptValue< ::rtl::OUString > moGraphicPath; ///< Path to a graphic for this shape.
+ OptValue< ::rtl::OUString > moGraphicTitle; ///< Title of the graphic.
explicit ShapeTypeModel();