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/fpdfapi/fpdf_edit/editint.h | |
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/fpdfapi/fpdf_edit/editint.h')
-rw-r--r-- | core/fpdfapi/fpdf_edit/editint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/fpdf_edit/editint.h b/core/fpdfapi/fpdf_edit/editint.h index 8a73f123a3..eaf93d12da 100644 --- a/core/fpdfapi/fpdf_edit/editint.h +++ b/core/fpdfapi/fpdf_edit/editint.h @@ -29,14 +29,14 @@ class CPDF_ObjectStream { FX_FILESIZE End(CPDF_Creator* pCreator); - CFX_DWordArray m_ObjNumArray; + CFX_ArrayTemplate<FX_DWORD> m_ObjNumArray; CFX_ByteTextBuf m_Buffer; FX_DWORD m_dwObjNum; int32_t m_index; protected: - CFX_DWordArray m_OffsetArray; + CFX_ArrayTemplate<FX_DWORD> m_OffsetArray; }; class CPDF_XRefStream { public: |