From ef2b74990f4f2a82e279ef5b8a911d89be1e83e2 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 20 Nov 2017 20:47:28 +0000 Subject: Convert CXFA_BindItemsData::Get* to return strings This CL changes the CXFA_BindItemsData to return the WideString values instead of taking out params. Change-Id: Ic756da02121c4ce40a123b887cc774045cbfaa8e Reviewed-on: https://pdfium-review.googlesource.com/18811 Reviewed-by: Ryan Harrison Commit-Queue: dsinclair --- xfa/fxfa/parser/cxfa_binditemsdata.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_binditemsdata.cpp') diff --git a/xfa/fxfa/parser/cxfa_binditemsdata.cpp b/xfa/fxfa/parser/cxfa_binditemsdata.cpp index 3f0614fd6f..7640314f06 100644 --- a/xfa/fxfa/parser/cxfa_binditemsdata.cpp +++ b/xfa/fxfa/parser/cxfa_binditemsdata.cpp @@ -11,16 +11,16 @@ CXFA_BindItemsData::CXFA_BindItemsData(CXFA_Node* pNode) : CXFA_DataData(pNode) {} -void CXFA_BindItemsData::GetLabelRef(WideString& wsLabelRef) { - wsLabelRef = m_pNode->JSNode()->GetCData(XFA_Attribute::LabelRef); +WideString CXFA_BindItemsData::GetLabelRef() { + return m_pNode->JSNode()->GetCData(XFA_Attribute::LabelRef); } -void CXFA_BindItemsData::GetValueRef(WideString& wsValueRef) { - wsValueRef = m_pNode->JSNode()->GetCData(XFA_Attribute::ValueRef); +WideString CXFA_BindItemsData::GetValueRef() { + return m_pNode->JSNode()->GetCData(XFA_Attribute::ValueRef); } -void CXFA_BindItemsData::GetRef(WideString& wsRef) { - wsRef = m_pNode->JSNode()->GetCData(XFA_Attribute::Ref); +WideString CXFA_BindItemsData::GetRef() { + return m_pNode->JSNode()->GetCData(XFA_Attribute::Ref); } bool CXFA_BindItemsData::SetConnection(const WideString& wsConnection) { -- cgit v1.2.3