Index: xfa/fxfa/parser/xfa_script_nodehelper.cpp |
diff --git a/xfa/fxfa/parser/xfa_script_nodehelper.cpp b/xfa/fxfa/parser/xfa_script_nodehelper.cpp |
index 6d106e9d6473c0cc3041e7a3cbb72b4c832c3c83..d7a1e29d9d1c694684136a21120a7da86809af1a 100644 |
--- a/xfa/fxfa/parser/xfa_script_nodehelper.cpp |
+++ b/xfa/fxfa/parser/xfa_script_nodehelper.cpp |
@@ -69,7 +69,7 @@ int32_t CXFA_NodeHelper::XFA_CountSiblings(CXFA_Node* pNode, |
} |
int32_t CXFA_NodeHelper::XFA_NodeAcc_TraverseAnySiblings( |
CXFA_Node* parent, |
- FX_DWORD dNameHash, |
+ uint32_t dNameHash, |
CXFA_NodeArray* pSiblings, |
FX_BOOL bIsClassName) { |
if (parent == NULL || pSiblings == NULL) { |
@@ -128,7 +128,7 @@ int32_t CXFA_NodeHelper::XFA_NodeAcc_TraverseAnySiblings( |
return nCount; |
} |
int32_t CXFA_NodeHelper::XFA_NodeAcc_TraverseSiblings(CXFA_Node* parent, |
- FX_DWORD dNameHash, |
+ uint32_t dNameHash, |
CXFA_NodeArray* pSiblings, |
XFA_LOGIC_TYPE eLogicType, |
FX_BOOL bIsClassName, |
@@ -242,7 +242,7 @@ int32_t CXFA_NodeHelper::XFA_GetIndex(CXFA_Node* pNode, |
return 0; |
} |
} |
- FX_DWORD dwHashName = pNode->GetNameHash(); |
+ uint32_t dwHashName = pNode->GetNameHash(); |
if (bIsClassIndex) { |
dwHashName = pNode->GetClassHashCode(); |
} |