summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 14:13:09 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:05 +0200
commitab33926923196908aa63ff83aabe63f8bd7e8a26 (patch)
tree3413a1ddcb9445335f66f7eea1b704e58749cf66
parent3641863b57a31d2382aa441a47d3250f7318f1d1 (diff)
sal_Bool->bool
Change-Id: Ic00ac7a2d8da00e631a57841edddc7f606ac0573
-rw-r--r--sc/inc/tabopparams.hxx10
-rw-r--r--sc/source/core/tool/progress.cxx4
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;
}
}