diff options
author | Nico Weber <thakis@chromium.org> | 2015-08-04 12:19:10 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2015-08-04 12:19:10 -0700 |
commit | b048f791a15f2da781a01eba5b09eb9d389f9c11 (patch) | |
tree | 6850a73c18bbc41eaf4b1fdc6b3c96646d45587b /fpdfsdk/src/fxedit/fxet_module.cpp | |
parent | c8eeed31f217d99a706b0cbf5e4ce0bcc12beb64 (diff) | |
download | pdfium-b048f791a15f2da781a01eba5b09eb9d389f9c11.tar.xz |
clang-format all pdfium code.
No behavior change.
Generated by:
find . -name '*.cpp' -o -name '*.h' | \
grep -E -v 'third_party|thirdparties|lpng_v163' | \
xargs ../../buildtools/mac/clang-format -i
See thread "tabs vs spaces" on pdfium@googlegroups.com for discussion.
BUG=none
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1265503005 .
Diffstat (limited to 'fpdfsdk/src/fxedit/fxet_module.cpp')
-rw-r--r-- | fpdfsdk/src/fxedit/fxet_module.cpp | 37 |
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; } - |