vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
This commit is contained in:
@@ -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
|
||||
// =========================================
|
||||
|
@@ -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();
|
||||
|
||||
|
@@ -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 )
|
||||
|
Reference in New Issue
Block a user