diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-17 13:15:16 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-17 13:15:16 -0800 |
commit | 3855f7ff0d4c5c8653fc17219bf65c4a0a95e8bb (patch) | |
tree | 17cd22db0b4cd1ea3c337d99ee760b3a86181eaf /xfa/fwl/core/ifwl_datetimepicker.cpp | |
parent | 935c6310adacf2f4a4265e831e6cb60dc7a35803 (diff) | |
download | pdfium-3855f7ff0d4c5c8653fc17219bf65c4a0a95e8bb.tar.xz |
Unify the three CFWL_EventType::SelectChange classes.
This CL removes the ListBox SelectChange class as it is never processed. The
other two have been unified into a single classs.
Review-Url: https://codereview.chromium.org/2509283003
Diffstat (limited to 'xfa/fwl/core/ifwl_datetimepicker.cpp')
-rw-r--r-- | xfa/fwl/core/ifwl_datetimepicker.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fwl/core/ifwl_datetimepicker.cpp b/xfa/fwl/core/ifwl_datetimepicker.cpp index 1e35eee55b..8d5d6cf442 100644 --- a/xfa/fwl/core/ifwl_datetimepicker.cpp +++ b/xfa/fwl/core/ifwl_datetimepicker.cpp @@ -8,6 +8,7 @@ #include "third_party/base/ptr_util.h" #include "xfa/fwl/core/cfwl_evteditchanged.h" +#include "xfa/fwl/core/cfwl_evtselectchanged.h" #include "xfa/fwl/core/cfwl_msgmouse.h" #include "xfa/fwl/core/cfwl_msgsetfocus.h" #include "xfa/fwl/core/cfwl_themebackground.h" @@ -356,7 +357,7 @@ void IFWL_DateTimePicker::ProcessSelChanged(int32_t iYear, m_pEdit->Update(); Repaint(&m_rtClient); - CFWL_Event_DtpSelectChanged ev; + CFWL_EvtSelectChanged ev; ev.m_pSrcTarget = this; ev.iYear = m_iYear; ev.iMonth = m_iMonth; |