summaryrefslogtreecommitdiff
path: root/sw/inc/fmtpdsc.hxx
diff options
context:
space:
mode:
authorAbdulmajeed Al-Abaulrazzaq <aalabdulrazzaq@kacst.edu.sa>2012-09-02 09:05:03 +0300
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-09-02 08:01:03 +0000
commitfc971580c76db8b7c9053883fef029fe1a243e21 (patch)
tree5d70945662a1ce814d3961b3d4b30b7e5483de3a /sw/inc/fmtpdsc.hxx
parent90d0127666b4d266a6ba151c0603ffe66f1f3a91 (diff)
Modifying comments to meet doxygen standards
Change-Id: I4c82b7e543ec74cec3d4eb2985a3e4ec68c16b11 Change-Id: Iaf83b7119767cf0b953cab62d5555141e8e154bb Reviewed-on: https://gerrit.libreoffice.org/496 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'sw/inc/fmtpdsc.hxx')
-rw-r--r--sw/inc/fmtpdsc.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/inc/fmtpdsc.hxx b/sw/inc/fmtpdsc.hxx
index 42527b1c6b1f..211cac8612eb 100644
--- a/sw/inc/fmtpdsc.hxx
+++ b/sw/inc/fmtpdsc.hxx
@@ -41,19 +41,19 @@ class SwPaM;
class IntlWrapper;
class SwEndNoteInfo;
-// Pagedescriptor
-// Client of SwPageDesc that is "described" by the attribute.
+/** Pagedescriptor
+ Client of SwPageDesc that is "described" by the attribute. */
class SW_DLLPUBLIC SwFmtPageDesc : public SfxPoolItem, public SwClient
{
- // This "Doc"-function is made friend in order to be able
- // to set the auto-flag after copying!!
+ /** This "Doc"-function is made friend in order to be able
+ to set the auto-flag after copying!! */
friend sal_Bool InsAttr( SwDoc*, const SwPaM &, const SfxItemSet&, sal_uInt16,
SwHistory* );
- sal_uInt16 nNumOffset; // Offset page number.
- sal_uInt16 nDescNameIdx; // SW3-Reader: stringpool-index of style name.
- SwModify* pDefinedIn; // Points to the object in which the
- // attribute was set (CntntNode/Format).
+ sal_uInt16 nNumOffset; ///< Offset page number.
+ sal_uInt16 nDescNameIdx; ///< SW3-Reader: stringpool-index of style name.
+ SwModify* pDefinedIn; /**< Points to the object in which the
+ attribute was set (CntntNode/Format). */
protected:
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew );
virtual void SwClientNotify( const SwModify&, const SfxHint& rHint );
@@ -66,7 +66,7 @@ public:
TYPEINFO();
- // "Pure virtual methods" of SfxPoolItem.
+ /// "Pure virtual methods" of SfxPoolItem.
virtual int operator==( const SfxPoolItem& ) const;
virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
@@ -83,7 +83,7 @@ public:
sal_uInt16 GetNumOffset() const { return nNumOffset; }
void SetNumOffset( sal_uInt16 nNum ) { nNumOffset = nNum; }
- // Query / set where attribute is anchored.
+ /// Query / set where attribute is anchored.
inline const SwModify* GetDefinedIn() const { return pDefinedIn; }
void ChgDefinedIn( const SwModify* pNew ) { pDefinedIn = (SwModify*)pNew; }
void RegisterToEndNotInfo( SwEndNoteInfo& );