Index: fpdfsdk/include/pdfwindow/PWL_Caret.h |
diff --git a/fpdfsdk/include/pdfwindow/PWL_Caret.h b/fpdfsdk/include/pdfwindow/PWL_Caret.h |
index 6838bc49e76a436a497f8f80baf3f78ad94db381..42743657b7e71f3f528edecf6b7b5568f4bcf693 100644 |
--- a/fpdfsdk/include/pdfwindow/PWL_Caret.h |
+++ b/fpdfsdk/include/pdfwindow/PWL_Caret.h |
@@ -12,11 +12,11 @@ |
struct PWL_CARET_INFO |
{ |
public: |
- PWL_CARET_INFO() : bVisible(FALSE), ptHead(0,0), ptFoot(0,0) |
+ PWL_CARET_INFO() : bVisible(false), ptHead(0,0), ptFoot(0,0) |
{ |
} |
- FX_BOOL bVisible; |
+ bool bVisible; |
CPDF_Point ptHead; |
CPDF_Point ptFoot; |
}; |
@@ -32,9 +32,9 @@ public: |
virtual void GetThisAppearanceStream(CFX_ByteTextBuf & sAppStream); |
virtual void DrawThisAppearance(CFX_RenderDevice* pDevice, CPDF_Matrix* pUser2Device); |
virtual void InvalidateRect(CPDF_Rect * pRect = NULL); |
- virtual void SetVisible(FX_BOOL bVisible) {} |
+ virtual void SetVisible(bool bVisible) {} |
virtual void TimerProc(); |
- void SetCaret(FX_BOOL bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot); |
+ void SetCaret(bool bVisible, const CPDF_Point & ptHead, const CPDF_Point & ptFoot); |
CFX_ByteString GetCaretAppearanceStream(const CPDF_Point & ptOffset); |
void SetInvalidRect(CPDF_Rect rc) {m_rcInvalid = rc;} |
@@ -42,7 +42,7 @@ private: |
void GetCaretApp(CFX_ByteTextBuf & sAppStream,const CPDF_Point & ptOffset); |
CPDF_Rect GetCaretRect() const; |
- FX_BOOL m_bFlash; |
+ bool m_bFlash; |
CPDF_Point m_ptHead; |
CPDF_Point m_ptFoot; |
FX_FLOAT m_fWidth; |