diff options
author | tsepez <tsepez@chromium.org> | 2017-01-04 10:09:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-04 10:09:45 -0800 |
commit | 6745f96fab41e2b46f57a3717b034a4064c0de02 (patch) | |
tree | ad3d8df2b200d99c6c32ea0ddd7e0ce53118c641 /fpdfsdk/pdfwindow/PWL_Edit.h | |
parent | fff400a5df032c2203eef9f76a5dbb164672df3d (diff) | |
download | pdfium-6745f96fab41e2b46f57a3717b034a4064c0de02.tar.xz |
Remove CFX_ArrayTemplate, use unique_ptr in fpdfsdk/pdfwindow
Review-Url: https://codereview.chromium.org/2594153003
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_Edit.h')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Edit.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_Edit.h b/fpdfsdk/pdfwindow/PWL_Edit.h index 3832236bda..801dedd0ac 100644 --- a/fpdfsdk/pdfwindow/PWL_Edit.h +++ b/fpdfsdk/pdfwindow/PWL_Edit.h @@ -7,6 +7,8 @@ #ifndef FPDFSDK_PDFWINDOW_PWL_EDIT_H_ #define FPDFSDK_PDFWINDOW_PWL_EDIT_H_ +#include <vector> + #include "core/fxcrt/fx_basic.h" #include "fpdfsdk/fxedit/fx_edit.h" #include "fpdfsdk/pdfwindow/PWL_EditCtrl.h" @@ -105,7 +107,7 @@ class CPWL_Edit : public CPWL_EditCtrl { void GeneratePageObjects(CPDF_PageObjectHolder* pObjectHolder, const CFX_FloatPoint& ptOffset, - CFX_ArrayTemplate<CPDF_TextObject*>& ObjArray); + std::vector<CPDF_TextObject*>* ObjArray); void GeneratePageObjects(CPDF_PageObjectHolder* pObjectHolder, const CFX_FloatPoint& ptOffset); |