From e36430e530e48d4145f34a554f9891b1989b590d Mon Sep 17 00:00:00 2001 From: dsinclair Date: Wed, 23 Nov 2016 07:36:00 -0800 Subject: Make Update and DrawWidget pure virtual These methods should be in all implementations, make them pure virtual to make that required. Review-Url: https://codereview.chromium.org/2525703004 --- xfa/fwl/core/ifwl_widget.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'xfa/fwl/core/ifwl_widget.cpp') diff --git a/xfa/fwl/core/ifwl_widget.cpp b/xfa/fwl/core/ifwl_widget.cpp index 040a57f696..a44ad975cf 100644 --- a/xfa/fwl/core/ifwl_widget.cpp +++ b/xfa/fwl/core/ifwl_widget.cpp @@ -171,8 +171,6 @@ void IFWL_Widget::SetStates(uint32_t dwStates, bool bSet) { return; } -void IFWL_Widget::Update() {} - FWL_WidgetHit IFWL_Widget::HitTest(FX_FLOAT fx, FX_FLOAT fy) { CFX_RectF rtClient; GetClientRect(rtClient); @@ -291,9 +289,6 @@ IFWL_Widget::DataProvider* IFWL_Widget::GetDataProvider() const { return m_pProperties->m_pDataProvider; } -void IFWL_Widget::DrawWidget(CFX_Graphics* pGraphics, - const CFX_Matrix* pMatrix) {} - void IFWL_Widget::SetThemeProvider(IFWL_ThemeProvider* pThemeProvider) { m_pProperties->m_pThemeProvider = pThemeProvider; } -- cgit v1.2.3