diff options
Diffstat (limited to 'xfa/fxfa')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.cpp | 11 | ||||
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp index 451c98f8f0..ec9be78a5c 100644 --- a/xfa/fxfa/parser/cxfa_node.cpp +++ b/xfa/fxfa/parser/cxfa_node.cpp @@ -4304,13 +4304,13 @@ bool CXFA_Node::SetValue(XFA_VALUEPICTURE eValueType, wsPicture, pLocale, pLocalMgr); wsNewText = widgetValue.GetValue(); if (eType == XFA_Element::NumericEdit) - wsNewText = NumericLimit(wsNewText, GetLeadDigits(), GetFracDigits()); + wsNewText = NumericLimit(wsNewText); bSyncData = true; } } else if (eType == XFA_Element::NumericEdit) { if (wsNewText != L"0") - wsNewText = NumericLimit(wsNewText, GetLeadDigits(), GetFracDigits()); + wsNewText = NumericLimit(wsNewText); bSyncData = true; } @@ -4629,9 +4629,10 @@ void CXFA_Node::InsertListTextItem(CXFA_Node* pItems, pText->JSObject()->SetContent(wsText, wsText, false, false, false); } -WideString CXFA_Node::NumericLimit(const WideString& wsValue, - int32_t iLead, - int32_t iTread) const { +WideString CXFA_Node::NumericLimit(const WideString& wsValue) { + int32_t iLead = GetLeadDigits(); + int32_t iTread = GetFracDigits(); + if ((iLead == -1) && (iTread == -1)) return wsValue; diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index dfe5ab0127..415ad94fb8 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -377,9 +377,7 @@ class CXFA_Node : public CXFA_Object { int32_t GetFracDigits(); int32_t GetLeadDigits(); - WideString NumericLimit(const WideString& wsValue, - int32_t iLead, - int32_t iTread) const; + WideString NumericLimit(const WideString& wsValue); protected: virtual XFA_Element GetValueNodeType() const; |