summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfwl_caret.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-12-07 17:12:59 -0800
committerCommit bot <commit-bot@chromium.org>2016-12-07 17:12:59 -0800
commit919c0842b74d382e7ae60c85ff16642b646afbb9 (patch)
tree9518c8f10639f90cc63549a1bb068b43a0661d46 /xfa/fwl/core/cfwl_caret.h
parent4614b45a6592530c4cd930f139c366ce20d359f4 (diff)
downloadpdfium-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_caret.h')
-rw-r--r--xfa/fwl/core/cfwl_caret.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fwl/core/cfwl_caret.h b/xfa/fwl/core/cfwl_caret.h
index ad38f7a3ed..ada0405748 100644
--- a/xfa/fwl/core/cfwl_caret.h
+++ b/xfa/fwl/core/cfwl_caret.h
@@ -34,7 +34,8 @@ class CFWL_Caret : public CFWL_Widget {
const CFX_Matrix* pMatrix) override;
void Update() override;
- void ShowCaret(bool bFlag = true);
+ void ShowCaret();
+ void HideCaret();
private:
class Timer : public CFWL_Timer {