[Libreoffice-commits] .: oox/inc

Miklos Vajna vmiklos at kemper.freedesktop.org
Fri May 4 01:52:44 PDT 2012


 oox/inc/oox/vml/vmldrawing.hxx |   34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

New commits:
commit 09ff698215ebd82b8ec63d5f7f79b9dad7203a59
Author: Miklos Vajna <vmiklos at suse.cz>
Date:   Fri May 4 10:51:35 2012 +0200

    oox: fix up doxygen syntax in oox/vml/vmldrawing.hxx
    
    Change-Id: Id726f7aa318dbf351cafd62d880b887d1a821431

diff --git a/oox/inc/oox/vml/vmldrawing.hxx b/oox/inc/oox/vml/vmldrawing.hxx
index 9a10b17..b9b626e 100644
--- a/oox/inc/oox/vml/vmldrawing.hxx
+++ b/oox/inc/oox/vml/vmldrawing.hxx
@@ -61,9 +61,9 @@ struct ClientData;
 /** Enumerates different types of VML drawings. */
 enum DrawingType
 {
-    VMLDRAWING_WORD,            /// Word: One shape per drawing.
-    VMLDRAWING_EXCEL,           /// Excel: OLE objects are part of VML.
-    VMLDRAWING_POWERPOINT       /// PowerPoint: OLE objects are part of DrawingML.
+    VMLDRAWING_WORD,            ///< Word: One shape per drawing.
+    VMLDRAWING_EXCEL,           ///< Excel: OLE objects are part of VML.
+    VMLDRAWING_POWERPOINT       ///< PowerPoint: OLE objects are part of DrawingML.
 };
 
 // ============================================================================
@@ -71,10 +71,10 @@ enum DrawingType
 /** Contains information about an OLE object embedded in a draw page. */
 struct OOX_DLLPUBLIC OleObjectInfo : public ::oox::ole::OleObjectInfo
 {
-    ::rtl::OUString     maShapeId;          /// Shape identifier for shape lookup.
-    ::rtl::OUString     maName;             /// Programmatical name of the OLE object.
+    ::rtl::OUString     maShapeId;          ///< Shape identifier for shape lookup.
+    ::rtl::OUString     maName;             ///< Programmatical name of the OLE object.
     bool                mbAutoLoad;
-    const bool          mbDmlShape;         /// True = DrawingML shape (PowerPoint), false = VML shape (Excel/Word).
+    const bool          mbDmlShape;         ///< True = DrawingML shape (PowerPoint), false = VML shape (Excel/Word).
 
     explicit            OleObjectInfo( bool bDmlShape = false );
 
@@ -87,9 +87,9 @@ struct OOX_DLLPUBLIC OleObjectInfo : public ::oox::ole::OleObjectInfo
 /** Contains information about a form control embedded in a draw page. */
 struct OOX_DLLPUBLIC ControlInfo
 {
-    ::rtl::OUString     maShapeId;          /// Shape identifier for shape lookup.
-    ::rtl::OUString     maFragmentPath;     /// Path to the fragment describing the form control properties.
-    ::rtl::OUString     maName;             /// Programmatical name of the form control.
+    ::rtl::OUString     maShapeId;          ///< Shape identifier for shape lookup.
+    ::rtl::OUString     maFragmentPath;     ///< Path to the fragment describing the form control properties.
+    ::rtl::OUString     maName;             ///< Programmatical name of the form control.
 
     explicit            ControlInfo();
 
@@ -201,15 +201,15 @@ private:
     typedef ::std::map< ::rtl::OUString, OleObjectInfo >    OleObjectInfoMap;
     typedef ::std::map< ::rtl::OUString, ControlInfo >      ControlInfoMap;
 
-    ::oox::core::XmlFilterBase& mrFilter;   /// Filter object that imports/exports the VML drawing.
+    ::oox::core::XmlFilterBase& mrFilter;   ///< Filter object that imports/exports the VML drawing.
     ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage >
-                        mxDrawPage;         /// UNO draw page used to insert the shapes.
-    mutable EmbeddedFormPtr mxCtrlForm;     /// The control form used to process embedded controls.
-    mutable BlockIdVector maBlockIds;       /// Block identifiers used by this drawing.
-    ShapeContainerPtr   mxShapes;           /// All shapes and shape templates.
-    OleObjectInfoMap    maOleObjects;       /// Info about all embedded OLE objects, mapped by shape id.
-    ControlInfoMap      maControls;         /// Info about all embedded form controls, mapped by control name.
-    const DrawingType   meType;             /// Application type containing the drawing.
+                        mxDrawPage;         ///< UNO draw page used to insert the shapes.
+    mutable EmbeddedFormPtr mxCtrlForm;     ///< The control form used to process embedded controls.
+    mutable BlockIdVector maBlockIds;       ///< Block identifiers used by this drawing.
+    ShapeContainerPtr   mxShapes;           ///< All shapes and shape templates.
+    OleObjectInfoMap    maOleObjects;       ///< Info about all embedded OLE objects, mapped by shape id.
+    ControlInfoMap      maControls;         ///< Info about all embedded form controls, mapped by control name.
+    const DrawingType   meType;             ///< Application type containing the drawing.
 };
 
 // ============================================================================


More information about the Libreoffice-commits mailing list