| Index: xfa/fwl/basewidget/ifwl_monthcalendar.h
|
| diff --git a/xfa/fwl/basewidget/ifwl_monthcalendar.h b/xfa/fwl/basewidget/ifwl_monthcalendar.h
|
| index 027d25b4261721cb5e3dca1297f350c106cf6aeb..40ea8cb09f58b38de75656814a26eabc6620fe47 100644
|
| --- a/xfa/fwl/basewidget/ifwl_monthcalendar.h
|
| +++ b/xfa/fwl/basewidget/ifwl_monthcalendar.h
|
| @@ -22,17 +22,17 @@
|
| #define FWL_ITEMSTATE_MCD_Selected (1L << 1)
|
| #define FWL_ITEMSTATE_MCD_Focused (1L << 2)
|
|
|
| -BEGIN_FWL_EVENT_DEF(CFWL_Event_McdDateSelected, CFWL_EventType::DataSelected)
|
| -int32_t m_iStartDay;
|
| -int32_t m_iEndDay;
|
| -END_FWL_EVENT_DEF
|
| -
|
| -BEGIN_FWL_EVENT_DEF(CFWL_EventMcdDateChanged, CFWL_EventType::DateChanged)
|
| -int32_t m_iOldYear;
|
| -int32_t m_iOldMonth;
|
| -int32_t m_iStartDay;
|
| -int32_t m_iEndDay;
|
| -END_FWL_EVENT_DEF
|
| +FWL_EVENT_DEF(CFWL_Event_McdDateSelected,
|
| + CFWL_EventType::DataSelected,
|
| + int32_t m_iStartDay;
|
| + int32_t m_iEndDay;)
|
| +
|
| +FWL_EVENT_DEF(CFWL_EventMcdDateChanged,
|
| + CFWL_EventType::DateChanged,
|
| + int32_t m_iOldYear;
|
| + int32_t m_iOldMonth;
|
| + int32_t m_iStartDay;
|
| + int32_t m_iEndDay;)
|
|
|
| class IFWL_MonthCalendarDP : public IFWL_DataProvider {
|
| public:
|
|
|