| 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 e866a1923d16483eb0a8c689728825143c52d06b..3a80d89a94304857671dc543ddf113837bacafaf 100644
|
| --- a/xfa/fxfa/parser/xfa_script_nodehelper.cpp
|
| +++ b/xfa/fxfa/parser/xfa_script_nodehelper.cpp
|
| @@ -284,13 +284,11 @@ void CXFA_NodeHelper::XFA_GetNameExpression(CXFA_Node* refNode,
|
| return;
|
| }
|
|
|
| - CFX_WideStringC wsTagName;
|
| CFX_WideString ws;
|
| FX_BOOL bIsProperty = XFA_NodeIsProperty(refNode);
|
| if (refNode->IsUnnamed() ||
|
| (bIsProperty && refNode->GetElementType() != XFA_Element::PageSet)) {
|
| - refNode->GetClassName(wsTagName);
|
| - ws = wsTagName;
|
| + ws = refNode->GetClassName();
|
| wsName.Format(L"#%s[%d]", ws.c_str(),
|
| XFA_GetIndex(refNode, eLogicType, bIsProperty, TRUE));
|
| return;
|
|
|