diff options
author | dsinclair <dsinclair@chromium.org> | 2016-12-07 17:12:59 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-07 17:12:59 -0800 |
commit | 919c0842b74d382e7ae60c85ff16642b646afbb9 (patch) | |
tree | 9518c8f10639f90cc63549a1bb068b43a0661d46 /xfa/fwl/core/cfwl_edit.h | |
parent | 4614b45a6592530c4cd930f139c366ce20d359f4 (diff) | |
download | pdfium-919c0842b74d382e7ae60c85ff16642b646afbb9.tar.xz |
Cleanup caret show/hide code
This CL splits the cursor code into specific show/hide methods to make it
clearer what is happening at each point.
Review-Url: https://codereview.chromium.org/2535623002
Diffstat (limited to 'xfa/fwl/core/cfwl_edit.h')
-rw-r--r-- | xfa/fwl/core/cfwl_edit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fwl/core/cfwl_edit.h b/xfa/fwl/core/cfwl_edit.h index d560bc5d8d..b8b3b143a3 100644 --- a/xfa/fwl/core/cfwl_edit.h +++ b/xfa/fwl/core/cfwl_edit.h @@ -119,7 +119,8 @@ class CFWL_Edit : public CFWL_Widget { void SetScrollOffset(FX_FLOAT fScrollOffset); protected: - void ShowCaret(bool bVisible, CFX_RectF* pRect = nullptr); + void ShowCaret(CFX_RectF* pRect); + void HideCaret(CFX_RectF* pRect); const CFX_RectF& GetRTClient() const { return m_rtClient; } CFDE_TxtEdtEngine* GetTxtEdtEngine() { return &m_EdtEngine; } |