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
// =========================================