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
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 &&
......
......@@ -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;
}
}
......
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