diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-16 15:49:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-17 09:16:51 +0200 |
commit | a9aa6d96d2cdf0d99e47d9b509dc6efcbcc79163 (patch) | |
tree | 7ceff7713a1678c3e59ea7e0f675c5d6488c3abb /sc/inc/appoptio.hxx | |
parent | d07b5fd742995d2d0ea645c70e51b8a27f7804fa (diff) |
sal_Bool->bool
Change-Id: If5aa8e345d301d24b29dd19b19fc40978d83c347
Diffstat (limited to 'sc/inc/appoptio.hxx')
-rw-r--r-- | sc/inc/appoptio.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index 9269a5c5c5b0..75c2147497f9 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -53,8 +53,8 @@ public: sal_uInt16 GetStatusFunc() const { return nStatusFunc; } void SetAutoComplete( bool bNew ) { bAutoComplete = bNew; } bool GetAutoComplete() const { return bAutoComplete; } - void SetDetectiveAuto( sal_Bool bNew ) { bDetectiveAuto = bNew; } - sal_Bool GetDetectiveAuto() const { return bDetectiveAuto; } + void SetDetectiveAuto( bool bNew ) { bDetectiveAuto = bNew; } + bool GetDetectiveAuto() const { return bDetectiveAuto; } void SetTrackContentColor(sal_uInt32 nNew) { nTrackContentColor = nNew; } sal_uInt32 GetTrackContentColor() const { return nTrackContentColor; } @@ -89,7 +89,7 @@ private: bool bSynchronizeZoom; sal_uInt16 nStatusFunc; bool bAutoComplete; - sal_Bool bDetectiveAuto; + bool bDetectiveAuto; sal_uInt32 nTrackContentColor; sal_uInt32 nTrackInsertColor; sal_uInt32 nTrackDeleteColor; |