diff options
Diffstat (limited to 'sc/source/ui/view/output3.cxx')
-rw-r--r-- | sc/source/ui/view/output3.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/output3.cxx b/sc/source/ui/view/output3.cxx index e98e1c93591d..fc8fb3e16444 100644 --- a/sc/source/ui/view/output3.cxx +++ b/sc/source/ui/view/output3.cxx @@ -210,7 +210,7 @@ void ScOutputData::DrawSelectiveObjects(const sal_uInt16 nLayer) pModel->UseHyphenator(); - ULONG nOldDrawMode = pDev->GetDrawMode(); + sal_uLong nOldDrawMode = pDev->GetDrawMode(); if ( bUseStyleColor && Application::GetSettings().GetStyleSettings().GetHighContrastMode() ) { pDev->SetDrawMode( nOldDrawMode | DRAWMODE_SETTINGSLINE | DRAWMODE_SETTINGSFILL | @@ -244,7 +244,7 @@ void ScOutputData::DrawSelectiveObjects(const sal_uInt16 nLayer) // #109985# void ScOutputData::DrawingSingle(const sal_uInt16 nLayer) { - BOOL bHad = FALSE; + sal_Bool bHad = false; SCSIZE nArrY; for (nArrY=1; nArrY+1<nArrCount; nArrY++) { @@ -254,13 +254,13 @@ void ScOutputData::DrawingSingle(const sal_uInt16 nLayer) { if (!bHad) { - bHad = TRUE; + bHad = sal_True; } } else if (bHad) { DrawSelectiveObjects( nLayer ); - bHad = FALSE; + bHad = false; } } |