summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r--xfa/fxfa/parser/cxfa_node.cpp4
-rw-r--r--xfa/fxfa/parser/cxfa_node.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp
index 093d83a67d..74263c7643 100644
--- a/xfa/fxfa/parser/cxfa_node.cpp
+++ b/xfa/fxfa/parser/cxfa_node.cpp
@@ -1604,7 +1604,7 @@ CXFA_Value* CXFA_Node::GetFormValue() const {
return JSObject()->GetProperty<CXFA_Value>(0, XFA_Element::Value);
}
-CXFA_Calculate* CXFA_Node::GetCalculate() const {
+CXFA_Calculate* CXFA_Node::GetCalculateIfExists() const {
return JSObject()->GetProperty<CXFA_Calculate>(0, XFA_Element::Calculate);
}
@@ -1697,7 +1697,7 @@ int32_t CXFA_Node::ProcessCalculate(CXFA_FFDocView* docView) {
if (GetElementType() == XFA_Element::Draw)
return XFA_EVENTERROR_NotExist;
- CXFA_Calculate* calc = GetCalculate();
+ CXFA_Calculate* calc = GetCalculateIfExists();
if (!calc)
return XFA_EVENTERROR_NotExist;
if (IsUserInteractive())
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h
index ed3b21d1e2..cafe6676fd 100644
--- a/xfa/fxfa/parser/cxfa_node.h
+++ b/xfa/fxfa/parser/cxfa_node.h
@@ -248,7 +248,7 @@ class CXFA_Node : public CXFA_Object {
CXFA_Margin* GetMarginIfExists() const;
CXFA_Para* GetParaIfExists() const;
- CXFA_Calculate* GetCalculate() const;
+ CXFA_Calculate* GetCalculateIfExists() const;
CXFA_Validate* GetValidate() const;
CXFA_Validate* GetOrCreateValidate();