Index: xfa/src/fwl/src/core/fwl_contentimp.cpp |
diff --git a/xfa/src/fwl/src/core/fwl_contentimp.cpp b/xfa/src/fwl/src/core/fwl_contentimp.cpp |
index 3093aebf74f1b7d67b8c71a969a6a221b7c129ec..93c8c3b61288567f9ad7e8f1072eadb614e484af 100644 |
--- a/xfa/src/fwl/src/core/fwl_contentimp.cpp |
+++ b/xfa/src/fwl/src/core/fwl_contentimp.cpp |
@@ -21,7 +21,7 @@ FWL_ERR IFWL_Content::Initialize() |
((CFWL_ContentImp*)m_pData)->SetInterface(this); |
return ((CFWL_ContentImp*)m_pData)->Initialize(); |
} |
-FWL_ERR IFWL_Content::InsertWidget(IFWL_Widget *pChild, FX_INT32 nIndex ) |
+FWL_ERR IFWL_Content::InsertWidget(IFWL_Widget *pChild, int32_t nIndex ) |
{ |
return ((CFWL_ContentImp*)m_pData)->InsertWidget(pChild, nIndex); |
} |
@@ -78,7 +78,7 @@ CFWL_ContentImp::CFWL_ContentImp(const CFWL_WidgetImpProperties &properties) |
CFWL_ContentImp::~CFWL_ContentImp() |
{ |
} |
-FWL_ERR CFWL_ContentImp::InsertWidget(IFWL_Widget *pChild, FX_INT32 nIndex ) |
+FWL_ERR CFWL_ContentImp::InsertWidget(IFWL_Widget *pChild, int32_t nIndex ) |
{ |
_FWL_RETURN_VALUE_IF_FAIL(pChild, FWL_ERR_Indefinite); |
pChild->SetParent(m_pInterface); |