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

Side by Side Diff: fpdfsdk/src/formfiller/FFL_Notify.cpp

Issue 426763003: Remove a few unused variables, functions, and member variables. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « fpdfsdk/include/pdfwindow/PWL_Note.h ('k') | fpdfsdk/src/formfiller/FFL_TextField.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 // #include "../../include/formfiller/FormFiller.h" 7 // #include "../../include/formfiller/FormFiller.h"
8 #include "../../include/formfiller/FFL_FormFiller.h" 8 #include "../../include/formfiller/FFL_FormFiller.h"
9 #include "../../include/formfiller/FFL_Notify.h" 9 #include "../../include/formfiller/FFL_Notify.h"
10 // #include "../../include/formfiller/FFL_ComboBox.h" 10 // #include "../../include/formfiller/FFL_ComboBox.h"
11 // #include "../../include/formfiller/FFL_Module.h" 11 // #include "../../include/formfiller/FFL_Module.h"
12 12
13 /* -------------------------------- CFFL_Notify ------------------------------ * / 13 /* -------------------------------- CFFL_Notify ------------------------------ * /
14 14
15 //#pragma warning(disable: 4800) 15 //#pragma warning(disable: 4800)
16 16
17 CFFL_Notify::CFFL_Notify(CFFL_FormFiller * pFormFiller) : 17 CFFL_Notify::CFFL_Notify(CFFL_FormFiller * pFormFiller) :
18 m_pFormFiller(pFormFiller),
19 m_bDoActioning(FALSE), 18 m_bDoActioning(FALSE),
20 m_nNotifyFlag(0) 19 m_nNotifyFlag(0)
21 { 20 {
22 » ASSERT(m_pFormFiller != NULL); 21 » ASSERT(pFormFiller != NULL);
23 } 22 }
24 23
25 CFFL_Notify::~CFFL_Notify() 24 CFFL_Notify::~CFFL_Notify()
26 { 25 {
27 } 26 }
28 27
29 void CFFL_Notify::BeforeNotify() 28 void CFFL_Notify::BeforeNotify()
30 { 29 {
31 m_nNotifyFlag ++; 30 m_nNotifyFlag ++;
32 } 31 }
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 162
164 return TRUE; 163 return TRUE;
165 } 164 }
166 165
167 FX_BOOL CFFL_Notify::ExecuteAction(CPDF_AAction::AActionType eAAT,CPDF_Action & action,FX_BOOL& bExit) 166 FX_BOOL CFFL_Notify::ExecuteAction(CPDF_AAction::AActionType eAAT,CPDF_Action & action,FX_BOOL& bExit)
168 { 167 {
169 return FALSE; 168 return FALSE;
170 } 169 }
171 //#pragma warning(default: 4800) 170 //#pragma warning(default: 4800)
172 171
OLDNEW
« no previous file with comments | « fpdfsdk/include/pdfwindow/PWL_Note.h ('k') | fpdfsdk/src/formfiller/FFL_TextField.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698