summaryrefslogtreecommitdiffstats
path: root/sw/inc/format.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-25 17:01:26 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-25 17:01:50 +0900
commit9e44e1a819cb919015a8e268029b7e979300ed5c (patch)
treeffdf4140de492f3469c6e37838a7e7e39fafa906 /sw/inc/format.hxx
parenthelpcontent2: Copy .memdump rule from core/.gitignore (diff)
downloadcore-9e44e1a819cb919015a8e268029b7e979300ed5c.tar.gz
core-9e44e1a819cb919015a8e268029b7e979300ed5c.zip
sal_Bool to bool
Change-Id: I8b76ba6d6a27cebefca3307a648bd5baafd27262
Diffstat (limited to 'sw/inc/format.hxx')
-rw-r--r--sw/inc/format.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/format.hxx b/sw/inc/format.hxx
index 883165f62cf3..593cb55b38ab 100644
--- a/sw/inc/format.hxx
+++ b/sw/inc/format.hxx
@@ -55,7 +55,7 @@ class SW_DLLPUBLIC SwFmt : public SwModify
sal_uInt16 nPoolHelpId; ///< HelpId for this Pool-style.
sal_uInt8 nPoolHlpFileId; ///< FilePos to Doc to these style helps.
sal_Bool bWritten : 1; ///< TRUE: already written.
- sal_Bool bAutoFmt : 1; /**< FALSE: it is a template.
+ bool bAutoFmt : 1; /**< FALSE: it is a template.
default is true! */
sal_Bool bFmtInDTOR : 1; /**< TRUE: Format becomes deleted. In order to be able
to recognize this in FmtChg-message!! */
@@ -161,8 +161,8 @@ public:
void ResetWritten() { bWritten = sal_False; }
/// Query / set AutoFmt-flag.
- sal_Bool IsAuto() const { return bAutoFmt; }
- void SetAuto( sal_Bool bNew = sal_False ) { bAutoFmt = bNew; }
+ bool IsAuto() const { return bAutoFmt; }
+ void SetAuto( bool bNew = false ) { bAutoFmt = bNew; }
/// Query / set bAutoUpdateFmt-flag.
sal_Bool IsAutoUpdateFmt() const { return bAutoUpdateFmt; }