summaryrefslogtreecommitdiff
path: root/fpdfsdk/src/fxedit/fxet_module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk/src/fxedit/fxet_module.cpp')
-rw-r--r--fpdfsdk/src/fxedit/fxet_module.cpp37
1 files changed, 15 insertions, 22 deletions
diff --git a/fpdfsdk/src/fxedit/fxet_module.cpp b/fpdfsdk/src/fxedit/fxet_module.cpp
index d1421641bc..5c0086ae21 100644
--- a/fpdfsdk/src/fxedit/fxet_module.cpp
+++ b/fpdfsdk/src/fxedit/fxet_module.cpp
@@ -10,37 +10,30 @@
/* ---------------------- IFX_Edit ---------------------- */
-IFX_Edit* IFX_Edit::NewEdit()
-{
- if (IPDF_VariableText * pVT = IPDF_VariableText::NewVariableText())
- {
- return new CFX_Edit(pVT);
- }
-
- return NULL;
+IFX_Edit* IFX_Edit::NewEdit() {
+ if (IPDF_VariableText* pVT = IPDF_VariableText::NewVariableText()) {
+ return new CFX_Edit(pVT);
+ }
+
+ return NULL;
}
-void IFX_Edit::DelEdit(IFX_Edit* pEdit)
-{
- ASSERT(pEdit != NULL);
+void IFX_Edit::DelEdit(IFX_Edit* pEdit) {
+ ASSERT(pEdit != NULL);
- IPDF_VariableText::DelVariableText(pEdit->GetVariableText());
+ IPDF_VariableText::DelVariableText(pEdit->GetVariableText());
- delete (CFX_Edit*)pEdit;
+ delete (CFX_Edit*)pEdit;
}
-
/* ---------------------- IFX_List ---------------------- */
-IFX_List* IFX_List::NewList()
-{
- return new CFX_ListCtrl();
+IFX_List* IFX_List::NewList() {
+ return new CFX_ListCtrl();
}
-void IFX_List::DelList(IFX_List* pList)
-{
- ASSERT(pList != NULL);
+void IFX_List::DelList(IFX_List* pList) {
+ ASSERT(pList != NULL);
- delete (CFX_ListCtrl*)pList;
+ delete (CFX_ListCtrl*)pList;
}
-