diff options
author | weili <weili@chromium.org> | 2016-05-25 15:47:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-25 15:47:44 -0700 |
commit | 65be4b1818ab99df2bf5b6265604fc25456db49d (patch) | |
tree | e191cc71c483d75d3226e6705ed79b3489fa31e9 /xfa/fgas | |
parent | 648575aaa8989be7071e7ec61293470a44cf2d94 (diff) | |
download | pdfium-65be4b1818ab99df2bf5b6265604fc25456db49d.tar.xz |
Complete or comment a couple Script_NodeClass functions
There are a few functions which are not completed in
CXFA_Node class. Complete or comment two functions in this change list.
The implementation follows Adobe's XFA 2.1 references here:
http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?content=001363.html.
Also, remove a data structure no longer needed -- the code which used it
has been removed.
BUG=pdfium:29
Review-Url: https://codereview.chromium.org/2011553004
Diffstat (limited to 'xfa/fgas')
-rw-r--r-- | xfa/fgas/localization/fgas_locale.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/xfa/fgas/localization/fgas_locale.cpp b/xfa/fgas/localization/fgas_locale.cpp index f0d1066397..ecd33e27cf 100644 --- a/xfa/fgas/localization/fgas_locale.cpp +++ b/xfa/fgas/localization/fgas_locale.cpp @@ -60,11 +60,6 @@ static const FX_WCHAR gs_wsTimeSymbols[] = L"hHkKMSFAzZ"; static const FX_WCHAR gs_wsDateSymbols[] = L"DJMEeGgYwW"; static const FX_WCHAR gs_wsConstChars[] = L",-:/. "; -static const FX_WCHAR* const gs_LocalNumberSymbols[] = { - L"decimal", L"grouping", L"percent", L"minus", - L"zero", L"currencySymbol", L"currencyName", -}; - static int32_t FX_ParseTimeZone(const FX_WCHAR* pStr, int32_t iLen, FX_TIMEZONE& tz) { |