diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-06-05 09:46:45 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-06-05 13:58:40 +0000 |
commit | 7211eac14643bbbaf41bfc205c244668f46be440 (patch) | |
tree | 6dacdf2a39b60695d0811d8ff63b650ebe56e3c1 /xfa/fxfa/app | |
parent | af680b17e0e1b94e40afa6a01ba3bbdead2d6035 (diff) | |
download | pdfium-7211eac14643bbbaf41bfc205c244668f46be440.tar.xz |
Cleaning up some XFA locale related code
This CL removes some unused locale related code and formats other bits.
Change-Id: I172fc16a634a8982c00bfaf84fdcd4cd277eb36d
Reviewed-on: https://pdfium-review.googlesource.com/6077
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/app')
-rw-r--r-- | xfa/fxfa/app/cxfa_ffnumericedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/app/cxfa_ffnumericedit.cpp b/xfa/fxfa/app/cxfa_ffnumericedit.cpp index a2aad63daa..09ea524ee4 100644 --- a/xfa/fxfa/app/cxfa_ffnumericedit.cpp +++ b/xfa/fxfa/app/cxfa_ffnumericedit.cpp @@ -91,7 +91,7 @@ bool CXFA_FFNumericEdit::OnValidate(CFWL_Widget* pWidget, CFX_WideString wsFormat; CXFA_LocaleValue widgetValue = XFA_GetLocaleValue(m_pDataAcc.Get()); - widgetValue.GetNumbericFormat(wsFormat, iLeads, iFracs); + widgetValue.GetNumericFormat(wsFormat, iLeads, iFracs); return widgetValue.ValidateNumericTemp(wsText, wsFormat, m_pDataAcc->GetLocal()); } |