Index: xfa/fwl/core/cfwl_widgetmgr.cpp |
diff --git a/xfa/fwl/core/cfwl_widgetmgr.cpp b/xfa/fwl/core/cfwl_widgetmgr.cpp |
index 1008defcabc256e9b1ce29d85ecc6a338104b1a7..dcb984b7774055dc7b948b1ca1205b5438f4ab88 100644 |
--- a/xfa/fwl/core/cfwl_widgetmgr.cpp |
+++ b/xfa/fwl/core/cfwl_widgetmgr.cpp |
@@ -613,7 +613,7 @@ void CFWL_WidgetMgrDelegate::OnDrawWidget(IFWL_Widget* pWidget, |
#if _FX_OS_ == _FX_WIN32_DESKTOP_ || _FX_OS_ == _FX_WIN64_ || \ |
_FX_OS_ == _FX_LINUX_DESKTOP_ || _FX_OS_ == _FX_ANDROID_ |
- pWidget->GetCurrentDelegate()->OnDrawWidget(pTemp, pMatrix); |
+ pWidget->GetDelegate()->OnDrawWidget(pTemp, pMatrix); |
pGraphics->GetClipRect(clipBounds); |
clipCopy = clipBounds; |
#elif _FX_OS_ == _FX_MACOSX_ |
@@ -678,7 +678,7 @@ void CFWL_WidgetMgrDelegate::DrawChild(IFWL_Widget* parent, |
} |
widgetMatrix.Translate(rtWidget.left, rtWidget.top, TRUE); |
- if (IFWL_WidgetDelegate* pDelegate = child->GetCurrentDelegate()) { |
+ if (IFWL_WidgetDelegate* pDelegate = child->GetDelegate()) { |
if (m_pWidgetMgr->IsFormDisabled() || |
IsNeedRepaint(child, &widgetMatrix, rtClip)) { |
pDelegate->OnDrawWidget(pGraphics, &widgetMatrix); |