summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_combolist.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-16 12:15:27 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-16 12:15:27 -0800
commit14a60c50b10de1d9e4edd3629ea210a816940a75 (patch)
tree7cf8c062b28245a9f01a3ed7aace12726ddbba85 /xfa/fwl/core/ifwl_combolist.h
parentaf177fe1c062d20b663a4a1c14924be85d0e631e (diff)
downloadpdfium-14a60c50b10de1d9e4edd3629ea210a816940a75.tar.xz
Continue formatting fwl/core
Review-Url: https://codereview.chromium.org/2506083002
Diffstat (limited to 'xfa/fwl/core/ifwl_combolist.h')
-rw-r--r--xfa/fwl/core/ifwl_combolist.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/xfa/fwl/core/ifwl_combolist.h b/xfa/fwl/core/ifwl_combolist.h
index 64ffbba647..ff479cbefe 100644
--- a/xfa/fwl/core/ifwl_combolist.h
+++ b/xfa/fwl/core/ifwl_combolist.h
@@ -25,17 +25,16 @@ class IFWL_ComboList : public IFWL_ListBox {
void ChangeSelected(int32_t iSel);
int32_t CountItems();
- void SetFocus(bool bSet);
void SetNotifyOwner(bool notify) { m_bNotifyOwner = notify; }
private:
void GetItemRect(int32_t nIndex, CFX_RectF& rtItem);
void ClientToOuter(FX_FLOAT& fx, FX_FLOAT& fy);
void OnDropListFocusChanged(CFWL_Message* pMsg, bool bSet);
- int32_t OnDropListMouseMove(CFWL_MsgMouse* pMsg);
- int32_t OnDropListLButtonDown(CFWL_MsgMouse* pMsg);
- int32_t OnDropListLButtonUp(CFWL_MsgMouse* pMsg);
- int32_t OnDropListKey(CFWL_MsgKey* pKey);
+ void OnDropListMouseMove(CFWL_MsgMouse* pMsg);
+ void OnDropListLButtonDown(CFWL_MsgMouse* pMsg);
+ void OnDropListLButtonUp(CFWL_MsgMouse* pMsg);
+ bool OnDropListKey(CFWL_MsgKey* pKey);
void OnDropListKeyDown(CFWL_MsgKey* pKey);
bool m_bNotifyOwner;