Kaydet (Commit) ab339269 authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: Ic00ac7a2d8da00e631a57841edddc7f606ac0573
üst 3641863b
...@@ -36,14 +36,14 @@ struct ScInterpreterTableOpParams ...@@ -36,14 +36,14 @@ struct ScInterpreterTableOpParams
ScAddress aFormulaPos; ScAddress aFormulaPos;
::std::vector< ScFormulaCell* > aNotifiedFormulaCells; ::std::vector< ScFormulaCell* > aNotifiedFormulaCells;
::std::vector< ScAddress > aNotifiedFormulaPos; ::std::vector< ScAddress > aNotifiedFormulaPos;
sal_Bool bValid; bool bValid;
sal_Bool bRefresh; bool bRefresh;
sal_Bool bCollectNotifications; bool bCollectNotifications;
ScInterpreterTableOpParams() ScInterpreterTableOpParams()
: bValid( false ) : bValid( false )
, bRefresh( false ) , bRefresh( false )
, bCollectNotifications( sal_True ) , bCollectNotifications( true )
{ {
} }
...@@ -75,7 +75,7 @@ struct ScInterpreterTableOpParams ...@@ -75,7 +75,7 @@ struct ScInterpreterTableOpParams
return *this; return *this;
} }
sal_Bool operator ==( const ScInterpreterTableOpParams& r ) bool operator ==( const ScInterpreterTableOpParams& r )
{ {
return return
bValid && r.bValid && bValid && r.bValid &&
......
...@@ -112,7 +112,7 @@ ScProgress::ScProgress( SfxObjectShell* pObjSh, const OUString& rText, ...@@ -112,7 +112,7 @@ ScProgress::ScProgress( SfxObjectShell* pObjSh, const OUString& rText,
pGlobalProgress = pProgress; pGlobalProgress = pProgress;
nGlobalRange = nRange; nGlobalRange = nRange;
nGlobalPercent = 0; nGlobalPercent = 0;
bGlobalNoUserBreak = sal_True; bGlobalNoUserBreak = true;
} }
} }
...@@ -131,7 +131,7 @@ ScProgress::~ScProgress() ...@@ -131,7 +131,7 @@ ScProgress::~ScProgress()
pGlobalProgress = NULL; pGlobalProgress = NULL;
nGlobalRange = 0; nGlobalRange = 0;
nGlobalPercent = 0; nGlobalPercent = 0;
bGlobalNoUserBreak = sal_True; bGlobalNoUserBreak = true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment