diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-05 16:41:04 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-05 16:41:04 -0800 |
commit | d794d34b5deb6ad691c19af758090f9ce46015a3 (patch) | |
tree | 2cf3a108d472bf8ef6989e6883aa553dd6ba0afe /fpdfsdk/src/fxedit/fxet_module.cpp | |
parent | dbfaa8d11404a53b4807b3dbd0185047367bbff6 (diff) | |
download | pdfium-d794d34b5deb6ad691c19af758090f9ce46015a3.tar.xz |
Remove header files that only have includes.
Also do some cleanups in affected files.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1552583002 .
Diffstat (limited to 'fpdfsdk/src/fxedit/fxet_module.cpp')
-rw-r--r-- | fpdfsdk/src/fxedit/fxet_module.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fpdfsdk/src/fxedit/fxet_module.cpp b/fpdfsdk/src/fxedit/fxet_module.cpp index 553cf3a62f..889b0f81a6 100644 --- a/fpdfsdk/src/fxedit/fxet_module.cpp +++ b/fpdfsdk/src/fxedit/fxet_module.cpp @@ -6,9 +6,6 @@ #include "fpdfsdk/include/fxedit/fxet_edit.h" #include "fpdfsdk/include/fxedit/fxet_list.h" -#include "fpdfsdk/include/fxedit/fxet_stub.h" - -/* ---------------------- IFX_Edit ---------------------- */ IFX_Edit* IFX_Edit::NewEdit() { if (IPDF_VariableText* pVT = IPDF_VariableText::NewVariableText()) { @@ -24,8 +21,6 @@ void IFX_Edit::DelEdit(IFX_Edit* pEdit) { delete (CFX_Edit*)pEdit; } -/* ---------------------- IFX_List ---------------------- */ - IFX_List* IFX_List::NewList() { return new CFX_ListCtrl(); } |