diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-23 07:36:00 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-23 07:36:00 -0800 |
commit | e36430e530e48d4145f34a554f9891b1989b590d (patch) | |
tree | b8c9bb0b3ab44b9aabb6b3bb3f19dffd7093acb1 /xfa/fwl/core/ifwl_caret.h | |
parent | 43f382c23c24a7b8214f4ea461623f13e25ca02a (diff) | |
download | pdfium-e36430e530e48d4145f34a554f9891b1989b590d.tar.xz |
Make Update and DrawWidget pure virtual
These methods should be in all implementations, make them pure virtual to
make that required.
Review-Url: https://codereview.chromium.org/2525703004
Diffstat (limited to 'xfa/fwl/core/ifwl_caret.h')
-rw-r--r-- | xfa/fwl/core/ifwl_caret.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xfa/fwl/core/ifwl_caret.h b/xfa/fwl/core/ifwl_caret.h index 53fe1dd6cb..51a80911d5 100644 --- a/xfa/fwl/core/ifwl_caret.h +++ b/xfa/fwl/core/ifwl_caret.h @@ -32,6 +32,7 @@ class IFWL_Caret : public IFWL_Widget { void OnProcessMessage(CFWL_Message* pMessage) override; void OnDrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) override; + void Update() override; void ShowCaret(bool bFlag = true); |