From 4b0c5b935471897e12a21c680aff0ba17d0686e8 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Wed, 31 Jan 2018 14:38:04 +0000 Subject: Remove NumericLimit params which are always the same This CL removes the two params from NumericLmits which are always set to the same value and retrieves the values in the method itself. Change-Id: Ibeabdc7187faa58e93ffbe00063171fec0842256 Reviewed-on: https://pdfium-review.googlesource.com/24717 Reviewed-by: Henrique Nakashima Reviewed-by: Ryan Harrison Commit-Queue: dsinclair --- fxjs/xfa/cjx_field.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'fxjs') diff --git a/fxjs/xfa/cjx_field.cpp b/fxjs/xfa/cjx_field.cpp index 078def3cf9..2b755b7d53 100644 --- a/fxjs/xfa/cjx_field.cpp +++ b/fxjs/xfa/cjx_field.cpp @@ -248,12 +248,8 @@ void CJX_Field::defaultValue(CFXJSE_Value* pValue, WideString wsNewText; if (pValue && !(pValue->IsNull() || pValue->IsUndefined())) wsNewText = pValue->ToWideString(); - - if (xfaNode->GetUIChildNode()->GetElementType() == - XFA_Element::NumericEdit) { - wsNewText = xfaNode->NumericLimit(wsNewText, xfaNode->GetLeadDigits(), - xfaNode->GetFracDigits()); - } + if (xfaNode->GetUIChildNode()->GetElementType() == XFA_Element::NumericEdit) + wsNewText = xfaNode->NumericLimit(wsNewText); CXFA_Node* pContainerNode = xfaNode->GetContainerNode(); WideString wsFormatText(wsNewText); -- cgit v1.2.3