summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/view/output.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:00:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:23 +0100
commitcc2606a785bf1a57623b8c58e7388112279f6b9e (patch)
tree044470773656db0b31ae1381672fa27f6811dd50 /sc/source/ui/view/output.cxx
parentbool improvements (diff)
downloadcore-cc2606a785bf1a57623b8c58e7388112279f6b9e.tar.gz
core-cc2606a785bf1a57623b8c58e7388112279f6b9e.zip
bool improvements
Change-Id: I740c0e18eefc64cb5f1da5b88ceb77289790ec37
Diffstat (limited to 'sc/source/ui/view/output.cxx')
-rw-r--r--sc/source/ui/view/output.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index eaa660d14b96..2459b2ed0ad0 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -182,7 +182,7 @@ ScOutputData::ScOutputData( OutputDevice* pNewDev, ScOutputType eNewType,
pTextColor( NULL ),
pFormulaColor( NULL ),
aGridColor( COL_BLACK ),
- mbShowNullValues( sal_True ),
+ mbShowNullValues( true ),
mbShowFormulas( false ),
bShowSpellErrors( false ),
bMarkClipped( false ), // sal_False fuer Drucker/Metafile etc.
@@ -586,7 +586,7 @@ void ScOutputData::SetPagebreakMode( ScPageBreakData* pPageData )
pThisRowInfo->nRowNo <= nEndY )
{
for (SCCOL nX=nStartX; nX<=nEndX; nX++)
- pThisRowInfo->pCellInfo[nX+1].bPrinted = sal_True;
+ pThisRowInfo->pCellInfo[nX+1].bPrinted = true;
}
}
}
@@ -627,7 +627,7 @@ void ScOutputData::FindRotated()
if (nDir != SC_ROTDIR_NONE)
{
pInfo->nRotateDir = nDir;
- bAnyRotated = sal_True;
+ bAnyRotated = true;
}
}
}