diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-09 10:06:55 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-11-09 10:06:55 -0500 |
commit | bee2c41e76330b0b808ff5e06f968716884eba2c (patch) | |
tree | b9213fb5925b99d280b7b6a9034ed89b933aedb2 /sc/source/ui/view/output.cxx | |
parent | 02c6f5c74b346f1e3a095d99a36ece6b603bc26b (diff) |
sal_Bool to bool.
Diffstat (limited to 'sc/source/ui/view/output.cxx')
-rw-r--r-- | sc/source/ui/view/output.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx index 35fbedc52469..2fe53a0b753e 100644 --- a/sc/source/ui/view/output.cxx +++ b/sc/source/ui/view/output.cxx @@ -1739,12 +1739,12 @@ void ScOutputData::FindChanged() SCCOL nX; SCSIZE nArrY; - sal_Bool bWasIdleDisabled = pDoc->IsIdleDisabled(); - pDoc->DisableIdle( sal_True ); + bool bWasIdleDisabled = pDoc->IsIdleDisabled(); + pDoc->DisableIdle(true); for (nArrY=0; nArrY<nArrCount; nArrY++) pRowInfo[nArrY].bChanged = false; - sal_Bool bProgress = false; + bool bProgress = false; for (nArrY=0; nArrY<nArrCount; nArrY++) { RowInfo* pThisRowInfo = &pRowInfo[nArrY]; @@ -1757,22 +1757,22 @@ void ScOutputData::FindChanged() ScFormulaCell* pFCell = (ScFormulaCell*)pCell; if ( !bProgress && pFCell->GetDirty() ) { - ScProgress::CreateInterpretProgress( pDoc, sal_True ); - bProgress = sal_True; + ScProgress::CreateInterpretProgress(pDoc, true); + bProgress = true; } if (!pFCell->IsRunning()) { (void)pFCell->GetValue(); if (pFCell->IsChanged()) { - pThisRowInfo->bChanged = sal_True; + pThisRowInfo->bChanged = true; if ( pThisRowInfo->pCellInfo[nX+1].bMerged ) { SCSIZE nOverY = nArrY + 1; while ( nOverY<nArrCount && pRowInfo[nOverY].pCellInfo[nX+1].bVOverlapped ) { - pRowInfo[nOverY].bChanged = sal_True; + pRowInfo[nOverY].bChanged = true; ++nOverY; } } |