Index: xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp |
diff --git a/xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp b/xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp |
index b12f4ce55dcf48133e68fd2d31dbe612f424c7bb..78492c2702c0882523ce33a487de579cab23b6aa 100644 |
--- a/xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp |
+++ b/xfa/fxfa/parser/xfa_layout_pagemgr_new.cpp |
@@ -297,7 +297,7 @@ static CXFA_Node* XFA_ResolveBreakTarget(CXFA_Node* pPageSetRoot, |
if (wsTargetExpr.GetAt(0) == '#') { |
CXFA_Node* pNode = pDocument->GetNodeByID( |
ToNode(pDocument->GetXFAObject(XFA_HASHCODE_Template)), |
- wsTargetExpr.Mid(1).AsWideStringC()); |
+ wsTargetExpr.Mid(1).AsStringC()); |
if (pNode) { |
return pNode; |
} |
@@ -309,7 +309,7 @@ static CXFA_Node* XFA_ResolveBreakTarget(CXFA_Node* pPageSetRoot, |
} |
XFA_RESOLVENODE_RS rs; |
int32_t iCount = pDocument->GetScriptContext()->ResolveObjects( |
- pPageSetRoot, wsProcessedTarget.AsWideStringC(), rs, |
+ pPageSetRoot, wsProcessedTarget.AsStringC(), rs, |
XFA_RESOLVENODE_Children | XFA_RESOLVENODE_Properties | |
XFA_RESOLVENODE_Attributes | XFA_RESOLVENODE_Siblings | |
XFA_RESOLVENODE_Parent); |