Index: fpdfsdk/src/fxedit/fxet_pageobjs.cpp |
diff --git a/fpdfsdk/src/fxedit/fxet_pageobjs.cpp b/fpdfsdk/src/fxedit/fxet_pageobjs.cpp |
index 1c0269b68262a1db31f9c700abe304a12332782c..04809a46f14a9f4abf47ec3dbf186993caf8cf9e 100644 |
--- a/fpdfsdk/src/fxedit/fxet_pageobjs.cpp |
+++ b/fpdfsdk/src/fxedit/fxet_pageobjs.cpp |
@@ -132,9 +132,9 @@ void IFX_Edit::DrawEdit(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, IF |
const CPDF_Rect& rcClip, const CPDF_Point& ptOffset, const CPVT_WordRange* pRange, IFX_SystemHandler* pSystemHandler, void* pFFLData) |
{ |
- FX_BOOL bContinuous = pEdit->GetCharArray() == 0; |
+ bool bContinuous = pEdit->GetCharArray() == 0; |
if (pEdit->GetCharSpace() > 0.0f) |
- bContinuous = FALSE; |
+ bContinuous = false; |
FX_WORD SubWord = pEdit->GetPasswordChar(); |
FX_FLOAT fFontSize = pEdit->GetFontSize(); |
@@ -144,7 +144,7 @@ void IFX_Edit::DrawEdit(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device, IF |
FX_COLORREF crCurFill = crTextFill; |
FX_COLORREF crOldFill = crCurFill; |
- FX_BOOL bSelect = FALSE; |
+ bool bSelect = false; |
const FX_COLORREF crWhite = ArgbEncode(255,255,255,255); |
const FX_COLORREF crSelBK = ArgbEncode(255,0,51,113); |
@@ -278,7 +278,7 @@ void IFX_Edit::DrawRichEdit(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device |
FX_COLORREF crCurText = ArgbEncode(255, 0,0,0); |
FX_COLORREF crOld = crCurText; |
- FX_BOOL bSelect = FALSE; |
+ bool bSelect = false; |
const FX_COLORREF crWhite = ArgbEncode(255,255,255,255); |
const FX_COLORREF crSelBK = ArgbEncode(255,0,51,113); |
@@ -410,7 +410,7 @@ static void AddRectToPageObjects(CPDF_PageObjects* pPageObjs, FX_COLORREF crFill |
pPathObj->m_ColorState.SetFillColor(CPDF_ColorSpace::GetStockCS(PDFCS_DEVICERGB), rgb, 3); |
pPathObj->m_FillType = FXFILL_ALTERNATE; |
- pPathObj->m_bStroke = FALSE; |
+ pPathObj->m_bStroke = false; |
pPageObjs->InsertObject(pPageObjs->GetLastObjectPosition(),pPathObj); |
} |