diff options
Diffstat (limited to 'sw/inc/node.hxx')
-rw-r--r-- | sw/inc/node.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/node.hxx b/sw/inc/node.hxx index 9ac30455dcc2..003d7b615dca 100644 --- a/sw/inc/node.hxx +++ b/sw/inc/node.hxx @@ -100,8 +100,8 @@ class SW_DLLPUBLIC SwNode /// For text nodes: level of auto format. Was put here because we had still free bits. sal_uInt8 nAFmtNumLvl : 3; - sal_Bool bSetNumLSpace : 1; ///< For numbering: TRUE: set indent. - sal_Bool bIgnoreDontExpand : 1; ///< for Text Attributes - ignore the flag + bool bSetNumLSpace : 1; ///< For numbering: TRUE: set indent. + bool bIgnoreDontExpand : 1; ///< for Text Attributes - ignore the flag protected: SwStartNode* pStartOfSection; @@ -133,11 +133,11 @@ public: inline sal_uInt8 GetAutoFmtLvl() const { return nAFmtNumLvl; } inline void SetAutoFmtLvl( sal_uInt8 nVal ) { nAFmtNumLvl = nVal; } - inline sal_Bool IsSetNumLSpace() const { return bSetNumLSpace; } - inline void SetNumLSpace( sal_Bool bFlag ) { bSetNumLSpace = bFlag; } + inline bool IsSetNumLSpace() const { return bSetNumLSpace; } + inline void SetNumLSpace( bool bFlag ) { bSetNumLSpace = bFlag; } - inline sal_Bool IsIgnoreDontExpand() const { return bIgnoreDontExpand; } - inline void SetIgnoreDontExpand( sal_Bool bNew ) { bIgnoreDontExpand = bNew; } + inline bool IsIgnoreDontExpand() const { return bIgnoreDontExpand; } + inline void SetIgnoreDontExpand( bool bNew ) { bIgnoreDontExpand = bNew; } sal_uInt8 GetNodeType() const { return nNodeType; } |