diff options
Diffstat (limited to 'xfa/fwl/core/cfwl_widget.cpp')
-rw-r--r-- | xfa/fwl/core/cfwl_widget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/core/cfwl_widget.cpp index 999a5a8443..db0d4ebb5e 100644 --- a/xfa/fwl/core/cfwl_widget.cpp +++ b/xfa/fwl/core/cfwl_widget.cpp @@ -127,11 +127,11 @@ FWL_Error CFWL_Widget::DrawWidget(CFX_Graphics* pGraphics, return m_pIface->DrawWidget(pGraphics, pMatrix); } -IFWL_WidgetDelegate* CFWL_Widget::GetCurrentDelegate() { - return m_pIface ? m_pIface->GetCurrentDelegate() : nullptr; +IFWL_WidgetDelegate* CFWL_Widget::GetDelegate() const { + return m_pIface ? m_pIface->GetDelegate() : nullptr; } -void CFWL_Widget::SetCurrentDelegate(IFWL_WidgetDelegate* pDelegate) { +void CFWL_Widget::SetDelegate(IFWL_WidgetDelegate* pDelegate) { if (m_pIface) - m_pIface->SetCurrentDelegate(pDelegate); + m_pIface->SetDelegate(pDelegate); } |