summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2012-12-12 10:58:39 +0100
committerMiklos Vajna <vmiklos@suse.cz>2012-12-12 10:59:25 +0100
commitcd96cf04314e2bcd73340b52cb9d372e884a4355 (patch)
tree852d147c28578faf67935c66259467b22f6afff0 /oox
parent1e40e188fa8c70022a48434582623c9255ffd2e8 (diff)
oox: fix doxygen madness in core
Change-Id: I9aa9eb12bc97281a1ff7d492ace446e70887908f
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/core/binarycodec.hxx14
-rw-r--r--oox/inc/oox/core/contexthandler.hxx2
-rw-r--r--oox/inc/oox/core/contexthandler2.hxx6
-rw-r--r--oox/inc/oox/core/fasttokenhandler.hxx2
-rw-r--r--oox/inc/oox/core/fragmenthandler.hxx4
5 files changed, 14 insertions, 14 deletions
diff --git a/oox/inc/oox/core/binarycodec.hxx b/oox/inc/oox/core/binarycodec.hxx
index 16fa4d244f32..64b06d4244ef 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 141f024a7b49..f9f6bb88906a 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 12ff23bae173..0bd192eeceb2 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 5b6013a496ce..42479244e67d 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 2d9ed1eb89b9..b7615b806c7d 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.
};
// ============================================================================