diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-21 12:26:54 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-21 12:26:54 -0700 |
commit | 4161c5ca6c5438476bf07b6dacfafb61ea611cc5 (patch) | |
tree | 76b021ad93546c362d6e6089c18e362aebe247aa /core/include/fxcrt | |
parent | a98600aeb8d815c297834aa5006f5c3ea20dde6d (diff) | |
download | pdfium-4161c5ca6c5438476bf07b6dacfafb61ea611cc5.tar.xz |
Make a few more const tables smaller.chromium/2689chromium/2688
Remove some tables from .h file (risk of duplication).
R=ochang@chromium.org
Review URL: https://codereview.chromium.org/1814233005 .
Diffstat (limited to 'core/include/fxcrt')
-rw-r--r-- | core/include/fxcrt/fx_arb.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/include/fxcrt/fx_arb.h b/core/include/fxcrt/fx_arb.h index 112118d5f9..57391dea19 100644 --- a/core/include/fxcrt/fx_arb.h +++ b/core/include/fxcrt/fx_arb.h @@ -13,20 +13,20 @@ class IFX_ArabicChar; struct FX_ARBFORMTABLE { - FX_WCHAR wIsolated; - FX_WCHAR wFinal; - FX_WCHAR wInitial; - FX_WCHAR wMedial; + uint16_t wIsolated; + uint16_t wFinal; + uint16_t wInitial; + uint16_t wMedial; }; struct FX_ARAALEF { - FX_WCHAR wAlef; - FX_WCHAR wIsolated; + uint16_t wAlef; + uint16_t wIsolated; }; struct FX_ARASHADDA { - FX_WCHAR wShadda; - FX_WCHAR wIsolated; + uint16_t wShadda; + uint16_t wIsolated; }; const FX_ARBFORMTABLE* FX_GetArabicFormTable(FX_WCHAR unicode); |