diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-10 11:01:16 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-10 11:01:16 -0800 |
commit | 3e577c2660c89646b56753839c1ec59c3ad187f4 (patch) | |
tree | 9b35b8cedcc885230ec521473ef2a3c9b5aaa6c6 /xfa/fwl/core/ifwl_edit.h | |
parent | f3480661a20c259581e7c100b0d5d06950a9559b (diff) | |
download | pdfium-3e577c2660c89646b56753839c1ec59c3ad187f4.tar.xz |
Convert FWL_SCBCODE to an enum class
This Cl changes the enum into an enum class and updates calling code to pass
the enum instead of a uint32_t
Review-Url: https://codereview.chromium.org/2482253004
Diffstat (limited to 'xfa/fwl/core/ifwl_edit.h')
-rw-r--r-- | xfa/fwl/core/ifwl_edit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/core/ifwl_edit.h b/xfa/fwl/core/ifwl_edit.h index 9dc8d01fbc..d436a4f550 100644 --- a/xfa/fwl/core/ifwl_edit.h +++ b/xfa/fwl/core/ifwl_edit.h @@ -261,7 +261,7 @@ class IFWL_Edit : public IFWL_Widget { void OnMouseMove(CFWL_MsgMouse* pMsg); void OnKeyDown(CFWL_MsgKey* pMsg); void OnChar(CFWL_MsgKey* pMsg); - bool OnScroll(IFWL_ScrollBar* pScrollBar, uint32_t dwCode, FX_FLOAT fPos); + bool OnScroll(IFWL_ScrollBar* pScrollBar, FWL_SCBCODE dwCode, FX_FLOAT fPos); }; #endif // XFA_FWL_CORE_IFWL_EDIT_H_ |