summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_listbox.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-10 11:01:16 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-10 11:01:16 -0800
commit3e577c2660c89646b56753839c1ec59c3ad187f4 (patch)
tree9b35b8cedcc885230ec521473ef2a3c9b5aaa6c6 /xfa/fwl/core/ifwl_listbox.h
parentf3480661a20c259581e7c100b0d5d06950a9559b (diff)
downloadpdfium-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_listbox.h')
-rw-r--r--xfa/fwl/core/ifwl_listbox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/core/ifwl_listbox.h b/xfa/fwl/core/ifwl_listbox.h
index fed3337a99..195b710ec2 100644
--- a/xfa/fwl/core/ifwl_listbox.h
+++ b/xfa/fwl/core/ifwl_listbox.h
@@ -188,7 +188,7 @@ class IFWL_ListBox : public IFWL_Widget {
void OnMouseWheel(CFWL_MsgMouseWheel* pMsg);
void OnKeyDown(CFWL_MsgKey* pMsg);
void OnVK(CFWL_ListItem* hItem, bool bShift, bool bCtrl);
- bool OnScroll(IFWL_ScrollBar* pScrollBar, uint32_t dwCode, FX_FLOAT fPos);
+ bool OnScroll(IFWL_ScrollBar* pScrollBar, FWL_SCBCODE dwCode, FX_FLOAT fPos);
void DispatchSelChangedEv();
};