diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-01-03 15:47:20 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-01-03 21:15:57 +0000 |
commit | 72f50f2021cd9f66016c962df8d27fc0c34748cd (patch) | |
tree | 735ae945128093c89634eb5bccba29af00f4d7fb /xfa/fwl/theme/cfwl_monthcalendartp.cpp | |
parent | c635c93c974db1c55032c36e81e98f3d214a249f (diff) | |
download | pdfium-72f50f2021cd9f66016c962df8d27fc0c34748cd.tar.xz |
Cleanup ThemeProvider code
Remove unused methods, fold the arrow data into the CFWL_WidgetTP instead of
a custom class and global object.
Change-Id: Ie942052555d6c8668d27072c1fcc5e8e00597518
Reviewed-on: https://pdfium-review.googlesource.com/2139
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fwl/theme/cfwl_monthcalendartp.cpp')
-rw-r--r-- | xfa/fwl/theme/cfwl_monthcalendartp.cpp | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/xfa/fwl/theme/cfwl_monthcalendartp.cpp b/xfa/fwl/theme/cfwl_monthcalendartp.cpp index 7e9ea0a72f..d98cf24f85 100644 --- a/xfa/fwl/theme/cfwl_monthcalendartp.cpp +++ b/xfa/fwl/theme/cfwl_monthcalendartp.cpp @@ -21,8 +21,14 @@ CFWL_MonthCalendarTP::CFWL_MonthCalendarTP() : m_pThemeData(new MCThemeData) { CFWL_MonthCalendarTP::~CFWL_MonthCalendarTP() {} -bool CFWL_MonthCalendarTP::IsValidWidget(CFWL_Widget* pWidget) { - return pWidget && pWidget->GetClassID() == FWL_Type::MonthCalendar; +void CFWL_MonthCalendarTP::Initialize() { + CFWL_WidgetTP::Initialize(); + InitTTO(); +} + +void CFWL_MonthCalendarTP::Finalize() { + FinalizeTTO(); + CFWL_WidgetTP::Finalize(); } void CFWL_MonthCalendarTP::DrawBackground(CFWL_ThemeBackground* pParams) { @@ -96,16 +102,6 @@ void CFWL_MonthCalendarTP::DrawText(CFWL_ThemeText* pParams) { CFWL_WidgetTP::DrawText(pParams); } -void CFWL_MonthCalendarTP::Initialize() { - InitTTO(); - CFWL_WidgetTP::Initialize(); -} - -void CFWL_MonthCalendarTP::Finalize() { - FinalizeTTO(); - CFWL_WidgetTP::Finalize(); -} - void CFWL_MonthCalendarTP::DrawTotalBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix) { CFX_Path path; |