diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-05-12 04:51:37 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-12 04:51:37 +0000 |
commit | 47a4f418a86b67532efd483eeac3ba5f066b754c (patch) | |
tree | 2f3dcdcd3588e1f71d5b847653dce34c56a379ba /xfa/fwl/cfwl_datetimepicker.h | |
parent | 626a093f5fded0e120de2343431c2ddfd14b957b (diff) | |
download | pdfium-47a4f418a86b67532efd483eeac3ba5f066b754c.tar.xz |
Remove unused CFWL_FormProxy.
Change-Id: I952cf31cb2e3f5ca19ea3af5e9e4e11881f0a90d
Reviewed-on: https://pdfium-review.googlesource.com/32395
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_datetimepicker.h')
-rw-r--r-- | xfa/fwl/cfwl_datetimepicker.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/xfa/fwl/cfwl_datetimepicker.h b/xfa/fwl/cfwl_datetimepicker.h index cf0bc2cfca..00e7f61d73 100644 --- a/xfa/fwl/cfwl_datetimepicker.h +++ b/xfa/fwl/cfwl_datetimepicker.h @@ -29,7 +29,6 @@ #define FWL_STYLEEXT_DTP_EditVAlignMask (3L << 6) class CFWL_DateTimeEdit; -class CFWL_FormProxy; class CFWL_DateTimePicker : public CFWL_Widget { public: @@ -66,15 +65,12 @@ class CFWL_DateTimePicker : public CFWL_Widget { void ShowMonthCalendar(bool bActivate); void ProcessSelChanged(int32_t iYear, int32_t iMonth, int32_t iDay); - CFWL_FormProxy* GetFormProxy() const { return m_pForm.get(); } - private: void DrawDropDownButton(CXFA_Graphics* pGraphics, IFWL_ThemeProvider* pTheme, const CFX_Matrix* pMatrix); WideString FormatDateString(int32_t iYear, int32_t iMonth, int32_t iDay); void ResetEditAlignment(); - void InitProxyForm(); void GetPopupPos(float fMinHeight, float fMaxHeight, const CFX_RectF& rtAnchor, @@ -96,7 +92,6 @@ class CFWL_DateTimePicker : public CFWL_Widget { bool m_bLBtnDown; std::unique_ptr<CFWL_DateTimeEdit> m_pEdit; std::unique_ptr<CFWL_MonthCalendar> m_pMonthCal; - std::unique_ptr<CFWL_FormProxy> m_pForm; float m_fBtn; }; |