Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: fpdfsdk/fxedit/fxet_module.cpp

Issue 2142213002: Remove some IFX_* wrappers. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/fxedit/fxet_list.cpp ('k') | fpdfsdk/fxedit/fxet_pageobjs.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « fpdfsdk/fxedit/fxet_list.cpp ('k') | fpdfsdk/fxedit/fxet_pageobjs.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698