diff options
Diffstat (limited to 'xfa/fwl/theme/cfwl_datetimepickertp.h')
-rw-r--r-- | xfa/fwl/theme/cfwl_datetimepickertp.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/xfa/fwl/theme/cfwl_datetimepickertp.h b/xfa/fwl/theme/cfwl_datetimepickertp.h index 199551ea1f..1b8899b73e 100644 --- a/xfa/fwl/theme/cfwl_datetimepickertp.h +++ b/xfa/fwl/theme/cfwl_datetimepickertp.h @@ -12,13 +12,16 @@ class CFWL_DateTimePickerTP : public CFWL_WidgetTP { public: CFWL_DateTimePickerTP(); - virtual ~CFWL_DateTimePickerTP(); - virtual FX_BOOL IsValidWidget(IFWL_Widget* pWidget); - virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams); + ~CFWL_DateTimePickerTP() override; + + // CFWL_WidgetTP + bool IsValidWidget(IFWL_Widget* pWidget) override; + FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; protected: void DrawDropDownButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); void initThemeData(); + struct DTPThemeData { FX_ARGB BoxBkColor[13][2]; } * m_pThemeData; |