From a9aa6d96d2cdf0d99e47d9b509dc6efcbcc79163 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 16 Jan 2014 15:49:55 +0200 Subject: sal_Bool->bool Change-Id: If5aa8e345d301d24b29dd19b19fc40978d83c347 --- sc/inc/appoptio.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/inc/appoptio.hxx') 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; -- cgit