From d19e912dd469e4bdad9f3020e1f6eb98f10f3470 Mon Sep 17 00:00:00 2001 From: tsepez Date: Wed, 2 Nov 2016 15:43:18 -0700 Subject: Remove FX_BOOL from xfa. Review-Url: https://codereview.chromium.org/2467203003 --- xfa/fxgraphics/cfx_shading.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xfa/fxgraphics/cfx_shading.h') diff --git a/xfa/fxgraphics/cfx_shading.h b/xfa/fxgraphics/cfx_shading.h index 2cc37cf0f6..4189581895 100644 --- a/xfa/fxgraphics/cfx_shading.h +++ b/xfa/fxgraphics/cfx_shading.h @@ -20,8 +20,8 @@ class CFX_Shading { // Axial shading. CFX_Shading(const CFX_PointF& beginPoint, const CFX_PointF& endPoint, - FX_BOOL isExtendedBegin, - FX_BOOL isExtendedEnd, + bool isExtendedBegin, + bool isExtendedEnd, const FX_ARGB beginArgb, const FX_ARGB endArgb); @@ -30,8 +30,8 @@ class CFX_Shading { const CFX_PointF& endPoint, const FX_FLOAT beginRadius, const FX_FLOAT endRadius, - FX_BOOL isExtendedBegin, - FX_BOOL isExtendedEnd, + bool isExtendedBegin, + bool isExtendedEnd, const FX_ARGB beginArgb, const FX_ARGB endArgb); virtual ~CFX_Shading(); @@ -46,8 +46,8 @@ class CFX_Shading { const CFX_PointF m_endPoint; const FX_FLOAT m_beginRadius; const FX_FLOAT m_endRadius; - const FX_BOOL m_isExtendedBegin; - const FX_BOOL m_isExtendedEnd; + const bool m_isExtendedBegin; + const bool m_isExtendedEnd; const FX_ARGB m_beginArgb; const FX_ARGB m_endArgb; FX_ARGB m_argbArray[FX_SHADING_Steps]; -- cgit v1.2.3