Index: fpdfsdk/src/pdfwindow/PWL_Caret.cpp |
diff --git a/fpdfsdk/src/pdfwindow/PWL_Caret.cpp b/fpdfsdk/src/pdfwindow/PWL_Caret.cpp |
index 84a8b3d1866e11ac82006de8957c2cc18328bca5..deccf06449eaedaa7428ddcad67eaeae8566b7e8 100644 |
--- a/fpdfsdk/src/pdfwindow/PWL_Caret.cpp |
+++ b/fpdfsdk/src/pdfwindow/PWL_Caret.cpp |
@@ -16,7 +16,7 @@ |
////////////////////////////////////////////////////////////////////// |
CPWL_Caret::CPWL_Caret() : |
- m_bFlash(FALSE), |
+ m_bFlash(false), |
m_ptHead(0,0), |
m_ptFoot(0,0), |
m_fWidth(0.4f), |
@@ -135,7 +135,7 @@ CPDF_Rect CPWL_Caret::GetCaretRect() const |
m_ptHead.y); |
} |
-void CPWL_Caret::SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot) |
+void CPWL_Caret::SetCaret(bool bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot) |
{ |
if (bVisible) |
{ |
@@ -147,9 +147,9 @@ void CPWL_Caret::SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPD |
m_ptHead = ptHead; |
m_ptFoot = ptFoot; |
- m_bFlash = TRUE; |
- //Move(GetCaretRect(),FALSE,TRUE); |
- Move(m_rcInvalid, FALSE, TRUE); |
+ m_bFlash = true; |
+ //Move(GetCaretRect(),false,true); |
+ Move(m_rcInvalid, false, true); |
} |
} |
else |
@@ -160,11 +160,11 @@ void CPWL_Caret::SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPD |
EndTimer(); |
BeginTimer(PWL_CARET_FLASHINTERVAL); |
- CPWL_Wnd::SetVisible(TRUE); |
- m_bFlash = TRUE; |
+ CPWL_Wnd::SetVisible(true); |
+ m_bFlash = true; |
- //Move(GetCaretRect(),FALSE,TRUE); |
- Move(m_rcInvalid, FALSE, TRUE); |
+ //Move(GetCaretRect(),false,true); |
+ Move(m_rcInvalid, false, true); |
} |
} |
else |
@@ -172,11 +172,11 @@ void CPWL_Caret::SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPD |
m_ptHead = CPDF_Point(0, 0); |
m_ptFoot = CPDF_Point(0, 0); |
- m_bFlash = FALSE; |
+ m_bFlash = false; |
if (IsVisible()) |
{ |
EndTimer(); |
- CPWL_Wnd::SetVisible(FALSE); |
+ CPWL_Wnd::SetVisible(false); |
} |
} |
} |