| Index: xfa/src/fxfa/src/app/xfa_fwladapter.cpp
|
| diff --git a/xfa/src/fxfa/src/app/xfa_fwladapter.cpp b/xfa/src/fxfa/src/app/xfa_fwladapter.cpp
|
| index 035fa0231060ffee830c0607f34c4143d63bd280..4b9741531061375677e8b08f2f392186cba31a86 100644
|
| --- a/xfa/src/fxfa/src/app/xfa_fwladapter.cpp
|
| +++ b/xfa/src/fxfa/src/app/xfa_fwladapter.cpp
|
| @@ -39,10 +39,10 @@ FX_BOOL FWL_ShowCaret(IFWL_Widget *pWidget, FX_BOOL bVisible, const CFX_RectF *p
|
| pXFAWidget->GetRotateMatrix(mt);
|
| CFX_RectF rt(*pRtAnchor);
|
| mt.TransformRect(rt);
|
| - pDocProvider->DisplayCaret((XFA_HWIDGET)pXFAWidget, bVisible, &rt);
|
| + pDocProvider->DisplayCaret(pXFAWidget, bVisible, &rt);
|
| return TRUE;
|
| }
|
| - pDocProvider->DisplayCaret((XFA_HWIDGET)pXFAWidget, bVisible, pRtAnchor);
|
| + pDocProvider->DisplayCaret(pXFAWidget, bVisible, pRtAnchor);
|
| return TRUE;
|
| }
|
| FWL_ERR CXFA_FWLAdapterWidgetMgr::RepaintWidget(IFWL_Widget *pWidget, const CFX_RectF *pRect)
|
| @@ -75,6 +75,6 @@ FX_BOOL CXFA_FWLAdapterWidgetMgr::GetPopupPos(IFWL_Widget* pWidget, FX_FLOAT fMi
|
| pFFWidget->GetRotateMatrix(mt);
|
| CFX_RectF rtRotateAnchor(rtAnchor);
|
| mt.TransformRect(rtRotateAnchor);
|
| - pFFWidget->GetDoc()->GetDocProvider()->GetPopupPos((XFA_HWIDGET)pFFWidget, fMinHeight, fMaxHeight, rtRotateAnchor, rtPopup);
|
| + pFFWidget->GetDoc()->GetDocProvider()->GetPopupPos(pFFWidget, fMinHeight, fMaxHeight, rtRotateAnchor, rtPopup);
|
| return TRUE;
|
| }
|
|
|