diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_linedata.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_linedata.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_linedata.cpp b/xfa/fxfa/parser/cxfa_linedata.cpp index c4995d7338..47e45c77f5 100644 --- a/xfa/fxfa/parser/cxfa_linedata.cpp +++ b/xfa/fxfa/parser/cxfa_linedata.cpp @@ -9,11 +9,11 @@ #include "xfa/fxfa/parser/cxfa_node.h" XFA_AttributeEnum CXFA_LineData::GetHand() const { - return m_pNode->JSNode()->GetEnum(XFA_Attribute::Hand); + return m_pNode->JSObject()->GetEnum(XFA_Attribute::Hand); } bool CXFA_LineData::GetSlope() const { - return m_pNode->JSNode()->GetEnum(XFA_Attribute::Slope) == + return m_pNode->JSObject()->GetEnum(XFA_Attribute::Slope) == XFA_AttributeEnum::Slash; } |