From bf1cf346ba28a9eab0d2ea490868c51040ee2bc4 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 3 Jan 2018 15:52:41 -0500 Subject: Convert CXFA_StrokeData to CXFA_Stroke This CL changes CXFA_StrokeData to CXFA_Stroke and changes the inheritance form CXFA_DataData to CXFA_Node. The CXFA_EdgeData and CXFA_CornerData classes are removed and the node equivalents are changed to inherit from CXFA_Stroke. Change-Id: I8aa4365a8ed79c29c3a4c34879abe898a188b7de Reviewed-on: https://pdfium-review.googlesource.com/22151 Commit-Queue: dsinclair Reviewed-by: Henrique Nakashima --- xfa/fxfa/parser/cxfa_linedata.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_linedata.cpp') diff --git a/xfa/fxfa/parser/cxfa_linedata.cpp b/xfa/fxfa/parser/cxfa_linedata.cpp index 37f4f2a48f..2c191e041c 100644 --- a/xfa/fxfa/parser/cxfa_linedata.cpp +++ b/xfa/fxfa/parser/cxfa_linedata.cpp @@ -18,7 +18,6 @@ bool CXFA_LineData::GetSlope() const { XFA_AttributeEnum::Slash; } -CXFA_EdgeData CXFA_LineData::GetEdgeData() const { - return CXFA_EdgeData( - m_pNode->GetChild(0, XFA_Element::Edge, false)); +CXFA_Edge* CXFA_LineData::GetEdge() const { + return m_pNode->GetChild(0, XFA_Element::Edge, false); } -- cgit v1.2.3