[Libreoffice-commits] .: oox/inc

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Dec 12 01:59:40 PST 2012


 oox/inc/oox/core/binarycodec.hxx      |   14 +++++++-------
 oox/inc/oox/core/contexthandler.hxx   |    2 +-
 oox/inc/oox/core/contexthandler2.hxx  |    6 +++---
 oox/inc/oox/core/fasttokenhandler.hxx |    2 +-
 oox/inc/oox/core/fragmenthandler.hxx  |    4 ++--
 5 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit cd96cf04314e2bcd73340b52cb9d372e884a4355
Author: Miklos Vajna <vmiklos at suse.cz>
Date:   Wed Dec 12 10:58:39 2012 +0100

    oox: fix doxygen madness in core
    
    Change-Id: I9aa9eb12bc97281a1ff7d492ace446e70887908f

diff --git a/oox/inc/oox/core/binarycodec.hxx b/oox/inc/oox/core/binarycodec.hxx
index 16fa4d2..64b06d4 100644
--- a/oox/inc/oox/core/binarycodec.hxx
+++ b/oox/inc/oox/core/binarycodec.hxx
@@ -58,8 +58,8 @@ public:
     /** Enumerates codec types supported by this XOR codec implementation. */
     enum CodecType
     {
-        CODEC_WORD,     /// MS Word XOR codec.
-        CODEC_EXCEL     /// MS Excel XOR codec.
+        CODEC_WORD,     ///< MS Word XOR codec.
+        CODEC_EXCEL     ///< MS Excel XOR codec.
     };
 
 public:
@@ -163,11 +163,11 @@ public:
     bool                skip( sal_Int32 nBytes );
 
 private:
-    CodecType           meCodecType;        /// Codec type.
-    sal_uInt8           mpnKey[ 16 ];       /// Encryption key.
-    sal_Int32           mnOffset;           /// Key offset.
-    sal_uInt16          mnBaseKey;          /// Base key from password.
-    sal_uInt16          mnHash;             /// Hash value from password.
+    CodecType           meCodecType;        ///< Codec type.
+    sal_uInt8           mpnKey[ 16 ];       ///< Encryption key.
+    sal_Int32           mnOffset;           ///< Key offset.
+    sal_uInt16          mnBaseKey;          ///< Base key from password.
+    sal_uInt16          mnHash;             ///< Hash value from password.
 };
 
 // ============================================================================
diff --git a/oox/inc/oox/core/contexthandler.hxx b/oox/inc/oox/core/contexthandler.hxx
index 141f024..f9f6bb8 100644
--- a/oox/inc/oox/core/contexthandler.hxx
+++ b/oox/inc/oox/core/contexthandler.hxx
@@ -104,7 +104,7 @@ private:
     ContextHandler&     operator=( const ContextHandler& );
 
 private:
-    FragmentBaseDataRef mxBaseData;         /// Base data of the fragment.
+    FragmentBaseDataRef mxBaseData;         ///< Base data of the fragment.
 };
 
 // ============================================================================
diff --git a/oox/inc/oox/core/contexthandler2.hxx b/oox/inc/oox/core/contexthandler2.hxx
index 12ff23b..0bd192e 100644
--- a/oox/inc/oox/core/contexthandler2.hxx
+++ b/oox/inc/oox/core/contexthandler2.hxx
@@ -204,9 +204,9 @@ private:
     typedef ::std::vector< ElementInfo >        ContextStack;
     typedef ::boost::shared_ptr< ContextStack > ContextStackRef;
 
-    ContextStackRef     mxContextStack;     /// Stack of all processed elements.
-    size_t              mnRootStackSize;    /// Stack size on construction time.
-    bool                mbEnableTrimSpace;  /// True = trim whitespace in characters().
+    ContextStackRef     mxContextStack;     ///< Stack of all processed elements.
+    size_t              mnRootStackSize;    ///< Stack size on construction time.
+    bool                mbEnableTrimSpace;  ///< True = trim whitespace in characters().
 };
 
 // ============================================================================
diff --git a/oox/inc/oox/core/fasttokenhandler.hxx b/oox/inc/oox/core/fasttokenhandler.hxx
index 5b6013a..4247924 100644
--- a/oox/inc/oox/core/fasttokenhandler.hxx
+++ b/oox/inc/oox/core/fasttokenhandler.hxx
@@ -54,7 +54,7 @@ public:
     virtual sal_Int32 SAL_CALL getTokenFromUTF8( const ::com::sun::star::uno::Sequence< sal_Int8 >& Identifier ) throw (::com::sun::star::uno::RuntimeException);
 
 private:
-    const TokenMap&     mrTokenMap;     /// Reference to global token map singleton.
+    const TokenMap&     mrTokenMap;     ///< Reference to global token map singleton.
 };
 
 // ============================================================================
diff --git a/oox/inc/oox/core/fragmenthandler.hxx b/oox/inc/oox/core/fragmenthandler.hxx
index 2d9ed1e..b7615b8 100644
--- a/oox/inc/oox/core/fragmenthandler.hxx
+++ b/oox/inc/oox/core/fragmenthandler.hxx
@@ -68,8 +68,8 @@ struct FragmentBaseData
  */
 struct RecordInfo
 {
-    sal_Int32           mnStartRecId;       /// Record identifier for context start.
-    sal_Int32           mnEndRecId;         /// Record identifier for context end, -1 = no record.
+    sal_Int32           mnStartRecId;       ///< Record identifier for context start.
+    sal_Int32           mnEndRecId;         ///< Record identifier for context end, -1 = no record.
 };
 
 // ============================================================================


More information about the Libreoffice-commits mailing list