diff options
author | Tom Sepez <tsepez@chromium.org> | 2016-03-25 13:42:34 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2016-03-25 13:42:34 -0700 |
commit | 46c8b1e3202ab5ae3663141dc25bec3b4360322e (patch) | |
tree | c12b4979cf1bd8f2930175a986e6d7918e6b9c45 /core/include | |
parent | 86a61dc374e8abe351df03a1aa6665013cc39345 (diff) | |
download | pdfium-46c8b1e3202ab5ae3663141dc25bec3b4360322e.tar.xz |
Replace CFX_DWordArray with CFX_ArrayTemplate<FX_DWORD>.
First step to getting rid of FX_DWORD.
R=ochang@chromium.org
Review URL: https://codereview.chromium.org/1832113003 .
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxge/fx_font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fxge/fx_font.h b/core/include/fxge/fx_font.h index 7bfe0c22f3..382a916734 100644 --- a/core/include/fxge/fx_font.h +++ b/core/include/fxge/fx_font.h @@ -346,7 +346,7 @@ class CFX_FontMapper { FX_BOOL m_bListLoaded; FXFT_Face m_MMFaces[MM_FACE_COUNT]; CFX_ByteString m_LastFamily; - CFX_DWordArray m_CharsetArray; + CFX_ArrayTemplate<FX_DWORD> m_CharsetArray; std::vector<CFX_ByteString> m_FaceArray; IFX_SystemFontInfo* m_pFontInfo; FXFT_Face m_FoxitFaces[FOXIT_FACE_COUNT]; |