From d81544b3f5b3eeac34f0a3ecf749254e1f86a96f Mon Sep 17 00:00:00 2001 From: Henrique Nakashima Date: Mon, 14 May 2018 16:28:59 +0000 Subject: Cleanup unused members of CFWL_MonthCalendar. Change-Id: Ia3a79aa7cc65aaecd1b0f0a5ea07df4e9d33a012 Reviewed-on: https://pdfium-review.googlesource.com/32396 Commit-Queue: Henrique Nakashima Reviewed-by: Ryan Harrison Reviewed-by: Tom Sepez --- xfa/fwl/cfwl_monthcalendar.h | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'xfa/fwl/cfwl_monthcalendar.h') diff --git a/xfa/fwl/cfwl_monthcalendar.h b/xfa/fwl/cfwl_monthcalendar.h index 3f1ea207fd..bdf66a0b5c 100644 --- a/xfa/fwl/cfwl_monthcalendar.h +++ b/xfa/fwl/cfwl_monthcalendar.h @@ -19,7 +19,6 @@ #define FWL_ITEMSTATE_MCD_Selected (1L << 1) class CFWL_MessageMouse; -class CFWL_Widget; class CFWL_MonthCalendar : public CFWL_Widget { public: @@ -149,7 +148,7 @@ class CFWL_MonthCalendar : public CFWL_Widget { void OnMouseMove(CFWL_MessageMouse* pMsg); void OnMouseLeave(CFWL_MessageMouse* pMsg); - bool m_bInitialized; + bool m_bInitialized = false; CFX_RectF m_rtHead; CFX_RectF m_rtWeek; CFX_RectF m_rtLBtn; @@ -159,19 +158,17 @@ class CFWL_MonthCalendar : public CFWL_Widget { CFX_RectF m_rtHeadText; CFX_RectF m_rtToday; CFX_RectF m_rtTodayFlag; - CFX_RectF m_rtWeekNum; - CFX_RectF m_rtWeekNumSep; WideString m_wsHead; WideString m_wsToday; std::vector> m_arrDates; - int32_t m_iCurYear; - int32_t m_iCurMonth; - int32_t m_iYear; - int32_t m_iMonth; - int32_t m_iDay; - int32_t m_iHovered; - int32_t m_iLBtnPartStates; - int32_t m_iRBtnPartStates; + int32_t m_iCurYear = 2011; + int32_t m_iCurMonth = 1; + int32_t m_iYear = 2011; + int32_t m_iMonth = 1; + int32_t m_iDay = 1; + int32_t m_iHovered = -1; + int32_t m_iLBtnPartStates = CFWL_PartState_Normal; + int32_t m_iRBtnPartStates = CFWL_PartState_Normal; DATE m_dtMin; DATE m_dtMax; CFX_SizeF m_szHead; @@ -179,7 +176,6 @@ class CFWL_MonthCalendar : public CFWL_Widget { CFX_SizeF m_szToday; std::vector m_arrSelDays; CFX_RectF m_rtClient; - bool m_bFlag; }; #endif // XFA_FWL_CFWL_MONTHCALENDAR_H_ -- cgit v1.2.3