diff options
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.cpp | 2 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp index ed2093cb7a..9c28668c16 100644 --- a/xfa/fxfa/parser/cxfa_node.cpp +++ b/xfa/fxfa/parser/cxfa_node.cpp @@ -1600,7 +1600,7 @@ CXFA_Value* CXFA_Node::GetDefaultValueIfExists() { : nullptr; } -CXFA_Value* CXFA_Node::GetFormValue() const { +CXFA_Value* CXFA_Node::GetFormValueIfExists() const { return JSObject()->GetProperty<CXFA_Value>(0, XFA_Element::Value); } diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index 7aea742a96..8a0a3610a6 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -253,7 +253,7 @@ class CXFA_Node : public CXFA_Object { CXFA_Validate* GetOrCreateValidateIfPossible(); CXFA_Value* GetDefaultValueIfExists(); - CXFA_Value* GetFormValue() const; + CXFA_Value* GetFormValueIfExists() const; WideString GetRawValue(); int32_t GetRotate(); |