summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_event.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_event.cpp b/xfa/fxfa/parser/cxfa_event.cpp
index 822baf8ce7..e9f1961f07 100644
--- a/xfa/fxfa/parser/cxfa_event.cpp
+++ b/xfa/fxfa/parser/cxfa_event.cpp
@@ -27,7 +27,7 @@ XFA_Element CXFA_Event::GetEventType() const {
}
void CXFA_Event::GetRef(WideStringView& wsRef) {
- m_pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Ref, wsRef);
+ m_pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Ref, wsRef, true);
}
CXFA_Script CXFA_Event::GetScript() const {
@@ -45,6 +45,6 @@ void CXFA_Event::GetSignDataTarget(WideString& wsTarget) {
return;
WideStringView wsCData;
- pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Target, wsCData);
+ pNode->JSNode()->TryCData(XFA_ATTRIBUTE_Target, wsCData, true);
wsTarget = wsCData;
}