| Index: xfa/fwl/core/fwl_widgetmgrimp.cpp
|
| diff --git a/xfa/fwl/core/fwl_widgetmgrimp.cpp b/xfa/fwl/core/fwl_widgetmgrimp.cpp
|
| index 9a9b2d6f243670fa7edb835cf26e1b108560facc..97a3cbc1f1b2b0bd4ceaab149cf6396def9a31fd 100644
|
| --- a/xfa/fwl/core/fwl_widgetmgrimp.cpp
|
| +++ b/xfa/fwl/core/fwl_widgetmgrimp.cpp
|
| @@ -664,7 +664,7 @@ FX_BOOL CFWL_WidgetMgr::IsAbleNative(IFWL_Widget* pWidget) {
|
| if (!pWidget->IsInstance(FX_WSTRC(FWL_CLASS_Form))) {
|
| return FALSE;
|
| }
|
| - FX_DWORD dwStyles = pWidget->GetStyles();
|
| + uint32_t dwStyles = pWidget->GetStyles();
|
| return ((dwStyles & FWL_WGTSTYLE_WindowTypeMask) ==
|
| FWL_WGTSTYLE_OverLapper) ||
|
| (dwStyles & FWL_WGTSTYLE_Popup);
|
| @@ -686,7 +686,7 @@ FX_BOOL CFWL_WidgetMgr::GetAdapterPopupPos(IFWL_Widget* pWidget,
|
| }
|
| CFWL_WidgetMgrDelegate::CFWL_WidgetMgrDelegate(CFWL_WidgetMgr* pWidgetMgr)
|
| : m_pWidgetMgr(pWidgetMgr) {}
|
| -FWL_ERR CFWL_WidgetMgrDelegate::OnSetCapability(FX_DWORD dwCapability) {
|
| +FWL_ERR CFWL_WidgetMgrDelegate::OnSetCapability(uint32_t dwCapability) {
|
| m_pWidgetMgr->m_dwCapability = dwCapability;
|
| return FWL_ERR_Succeeded;
|
| }
|
|
|