summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_caret.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-11-02 15:43:18 -0700
committerCommit bot <commit-bot@chromium.org>2016-11-02 15:43:19 -0700
commitd19e912dd469e4bdad9f3020e1f6eb98f10f3470 (patch)
tree239cb568a80445f14a1ab9b63dcaaddcce67e1cc /xfa/fwl/core/ifwl_caret.h
parent12f3e4a58f05850b93af35619cb04f0231d86acc (diff)
downloadpdfium-d19e912dd469e4bdad9f3020e1f6eb98f10f3470.tar.xz
Remove FX_BOOL from xfa.
Review-Url: https://codereview.chromium.org/2467203003
Diffstat (limited to 'xfa/fwl/core/ifwl_caret.h')
-rw-r--r--xfa/fwl/core/ifwl_caret.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/core/ifwl_caret.h b/xfa/fwl/core/ifwl_caret.h
index 888e8ffbed..7d91d5760f 100644
--- a/xfa/fwl/core/ifwl_caret.h
+++ b/xfa/fwl/core/ifwl_caret.h
@@ -33,7 +33,7 @@ class IFWL_Caret : public IFWL_Widget {
void OnDrawWidget(CFX_Graphics* pGraphics,
const CFX_Matrix* pMatrix) override;
- void ShowCaret(FX_BOOL bFlag = TRUE);
+ void ShowCaret(bool bFlag = true);
FWL_Error GetFrequency(uint32_t& elapse);
FWL_Error SetFrequency(uint32_t elapse);
FWL_Error SetColor(CFX_Color crFill);
@@ -56,7 +56,7 @@ class IFWL_Caret : public IFWL_Widget {
IFWL_TimerInfo* m_pTimerInfo; // not owned.
uint32_t m_dwElapse;
CFX_Color m_crFill;
- FX_BOOL m_bSetColor;
+ bool m_bSetColor;
};
#endif // XFA_FWL_CORE_IFWL_CARET_H_