From ab33926923196908aa63ff83aabe63f8bd7e8a26 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 12 Feb 2014 14:13:09 +0200 Subject: sal_Bool->bool Change-Id: Ic00ac7a2d8da00e631a57841edddc7f606ac0573 --- sc/inc/tabopparams.hxx | 10 +++++----- sc/source/core/tool/progress.cxx | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/sc/inc/tabopparams.hxx b/sc/inc/tabopparams.hxx index 89ccd2b77525..3090fc479062 100644 --- a/sc/inc/tabopparams.hxx +++ b/sc/inc/tabopparams.hxx @@ -36,14 +36,14 @@ struct ScInterpreterTableOpParams ScAddress aFormulaPos; ::std::vector< ScFormulaCell* > aNotifiedFormulaCells; ::std::vector< ScAddress > aNotifiedFormulaPos; - sal_Bool bValid; - sal_Bool bRefresh; - sal_Bool bCollectNotifications; + bool bValid; + bool bRefresh; + bool bCollectNotifications; ScInterpreterTableOpParams() : bValid( false ) , bRefresh( false ) - , bCollectNotifications( sal_True ) + , bCollectNotifications( true ) { } @@ -75,7 +75,7 @@ struct ScInterpreterTableOpParams return *this; } - sal_Bool operator ==( const ScInterpreterTableOpParams& r ) + bool operator ==( const ScInterpreterTableOpParams& r ) { return bValid && r.bValid && diff --git a/sc/source/core/tool/progress.cxx b/sc/source/core/tool/progress.cxx index bd09a3f14177..e066dfa698d4 100644 --- a/sc/source/core/tool/progress.cxx +++ b/sc/source/core/tool/progress.cxx @@ -112,7 +112,7 @@ ScProgress::ScProgress( SfxObjectShell* pObjSh, const OUString& rText, pGlobalProgress = pProgress; nGlobalRange = nRange; nGlobalPercent = 0; - bGlobalNoUserBreak = sal_True; + bGlobalNoUserBreak = true; } } @@ -131,7 +131,7 @@ ScProgress::~ScProgress() pGlobalProgress = NULL; nGlobalRange = 0; nGlobalPercent = 0; - bGlobalNoUserBreak = sal_True; + bGlobalNoUserBreak = true; } } -- cgit