| Index: xfa/fxfa/parser/cxfa_calculate.cpp
|
| diff --git a/xfa/fxfa/parser/cxfa_calculate.cpp b/xfa/fxfa/parser/cxfa_calculate.cpp
|
| index 8984c5e8173e5db218acfc79367cddeb6259404b..17379cb6c73b0f97be1d0bd41cc6c5b16794cba5 100644
|
| --- a/xfa/fxfa/parser/cxfa_calculate.cpp
|
| +++ b/xfa/fxfa/parser/cxfa_calculate.cpp
|
| @@ -18,15 +18,15 @@ int32_t CXFA_Calculate::GetOverride() {
|
| }
|
|
|
| CXFA_Script CXFA_Calculate::GetScript() {
|
| - return CXFA_Script(m_pNode->GetChild(0, XFA_ELEMENT_Script));
|
| + return CXFA_Script(m_pNode->GetChild(0, XFA_Element::Script));
|
| }
|
|
|
| void CXFA_Calculate::GetMessageText(CFX_WideString& wsMessage) {
|
| - CXFA_Node* pNode = m_pNode->GetChild(0, XFA_ELEMENT_Message);
|
| + CXFA_Node* pNode = m_pNode->GetChild(0, XFA_Element::Message);
|
| if (!pNode)
|
| return;
|
|
|
| - CXFA_Text text(pNode->GetChild(0, XFA_ELEMENT_Text));
|
| + CXFA_Text text(pNode->GetChild(0, XFA_Element::Text));
|
| if (text)
|
| text.GetContent(wsMessage);
|
| }
|
|
|