summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_binditemsdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_binditemsdata.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_binditemsdata.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_binditemsdata.cpp b/xfa/fxfa/parser/cxfa_binditemsdata.cpp
index ac6b765faa..3f0614fd6f 100644
--- a/xfa/fxfa/parser/cxfa_binditemsdata.cpp
+++ b/xfa/fxfa/parser/cxfa_binditemsdata.cpp
@@ -12,15 +12,15 @@ CXFA_BindItemsData::CXFA_BindItemsData(CXFA_Node* pNode)
: CXFA_DataData(pNode) {}
void CXFA_BindItemsData::GetLabelRef(WideString& wsLabelRef) {
- m_pNode->JSNode()->TryCData(XFA_Attribute::LabelRef, wsLabelRef, true);
+ wsLabelRef = m_pNode->JSNode()->GetCData(XFA_Attribute::LabelRef);
}
void CXFA_BindItemsData::GetValueRef(WideString& wsValueRef) {
- m_pNode->JSNode()->TryCData(XFA_Attribute::ValueRef, wsValueRef, true);
+ wsValueRef = m_pNode->JSNode()->GetCData(XFA_Attribute::ValueRef);
}
void CXFA_BindItemsData::GetRef(WideString& wsRef) {
- m_pNode->JSNode()->TryCData(XFA_Attribute::Ref, wsRef, true);
+ wsRef = m_pNode->JSNode()->GetCData(XFA_Attribute::Ref);
}
bool CXFA_BindItemsData::SetConnection(const WideString& wsConnection) {