vcl: sal_Bool -> bool

Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
This commit is contained in:
Stephan Bergmann
2014-02-21 12:53:51 +01:00
parent 1c8402465c
commit e8f8f24c84
869 changed files with 8364 additions and 8350 deletions

View File

@@ -1491,9 +1491,9 @@ namespace cppcanvas
(sal_Int8)rFont.GetUnderline();
rState.textStrikeoutStyle = (sal_Int8)rFont.GetStrikeout();
rState.textEmphasisMarkStyle = (sal_Int8)rFont.GetEmphasisMark();
rState.isTextEffectShadowSet = (rFont.IsShadow() != sal_False);
rState.isTextWordUnderlineSet = (rFont.IsWordLineMode() != sal_False);
rState.isTextOutlineModeSet = (rFont.IsOutline() != sal_False);
rState.isTextEffectShadowSet = rFont.IsShadow();
rState.isTextWordUnderlineSet = rFont.IsWordLineMode();
rState.isTextOutlineModeSet = rFont.IsOutline();
}
break;
@@ -2889,7 +2889,7 @@ namespace cppcanvas
VectorOfOutDevStates aStateStack;
VirtualDevice aVDev;
aVDev.EnableOutput( sal_False );
aVDev.EnableOutput( false );
// Setup VDev for state tracking and mapping
// =========================================

View File

@@ -239,7 +239,7 @@ namespace cppcanvas
rVDev.GetFontMetric();
// will restore map mode below
const_cast< ::VirtualDevice& >(rVDev).EnableMapMode( sal_False );
const_cast< ::VirtualDevice& >(rVDev).EnableMapMode( false );
const ::FontMetric aMetric = rVDev.GetFontMetric();

View File

@@ -1967,7 +1967,7 @@ namespace cppcanvas
static_cast<sal_uInt16>(nStartPos),
static_cast<sal_uInt16>(nStartPos),
static_cast<sal_uInt16>(nLen),
sal_True, 0, pDXArray ) );
true, 0, pDXArray ) );
rVDev.SetFont(aOrigFont);
if( !bHaveOutlines )