diff options
Diffstat (limited to 'xfa/fwl/theme/cfwl_listboxtp.h')
-rw-r--r-- | xfa/fwl/theme/cfwl_listboxtp.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/xfa/fwl/theme/cfwl_listboxtp.h b/xfa/fwl/theme/cfwl_listboxtp.h index 9ae85c72e7..a13df08845 100644 --- a/xfa/fwl/theme/cfwl_listboxtp.h +++ b/xfa/fwl/theme/cfwl_listboxtp.h @@ -12,11 +12,13 @@ class CFWL_ListBoxTP : public CFWL_WidgetTP { public: CFWL_ListBoxTP(); - virtual ~CFWL_ListBoxTP(); - virtual FX_BOOL IsValidWidget(IFWL_Widget* pWidget); - virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams); - virtual FWL_Error Initialize(); - virtual FWL_Error Finalize(); + ~CFWL_ListBoxTP() override; + + // CFWL_WidgetTP + bool IsValidWidget(IFWL_Widget* pWidget) override; + FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; + FWL_Error Initialize() override; + FWL_Error Finalize() override; protected: void DrawListBoxItem(CFX_Graphics* pGraphics, |