| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
| 6 | |
| 7 #include "core/fpdfdoc/include/cpdf_variabletext.h" | |
| 8 #include "fpdfsdk/fxedit/include/fxet_edit.h" | |
| 9 #include "fpdfsdk/fxedit/include/fxet_list.h" | |
| 10 | |
| 11 IFX_Edit* IFX_Edit::NewEdit() { | |
| 12 return new CFX_Edit(new CPDF_VariableText()); | |
| 13 } | |
| 14 | |
| 15 void IFX_Edit::DelEdit(IFX_Edit* pEdit) { | |
| 16 delete pEdit->GetVariableText(); | |
| 17 delete static_cast<CFX_Edit*>(pEdit); | |
| 18 } | |
| 19 | |
| 20 IFX_List* IFX_List::NewList() { | |
| 21 return new CFX_ListCtrl(); | |
| 22 } | |
| 23 | |
| 24 void IFX_List::DelList(IFX_List* pList) { | |
| 25 ASSERT(pList); | |
| 26 delete (CFX_ListCtrl*)pList; | |
| 27 } | |
| OLD | NEW |