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

Unified Diff: fpdfsdk/src/fxedit/fxet_module.cpp

Issue 1265503005: clang-format all pdfium code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: sigh Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: fpdfsdk/src/fxedit/fxet_module.cpp
diff --git a/fpdfsdk/src/fxedit/fxet_module.cpp b/fpdfsdk/src/fxedit/fxet_module.cpp
index d1421641bc83dcfa5358f6f2e8b443461d1db713..5c0086ae2175da589792f2a7ced69c4f582a1d93 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;
}
-

Powered by Google App Engine
This is Rietveld 408576698