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

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

Issue 1196853002: Cleanup: Remove dead formfiller code. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 6 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
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/FFL_TextField.h" 7 #include "../../include/formfiller/FFL_TextField.h"
8 #include "../../include/formfiller/FFL_CBA_Fontmap.h" 8 #include "../../include/formfiller/FFL_CBA_Fontmap.h"
9 9
10 /* ------------------------------- CFFL_TextField ------------------------------ - */ 10 /* ------------------------------- CFFL_TextField ------------------------------ - */
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 FX_BOOL CFFL_TextField::CanCut(CPDFSDK_Document* pDocument) 354 FX_BOOL CFFL_TextField::CanCut(CPDFSDK_Document* pDocument)
355 { 355 {
356 return FALSE; 356 return FALSE;
357 } 357 }
358 358
359 FX_BOOL CFFL_TextField::CanPaste(CPDFSDK_Document* pDocument) 359 FX_BOOL CFFL_TextField::CanPaste(CPDFSDK_Document* pDocument)
360 { 360 {
361 return FALSE; 361 return FALSE;
362 } 362 }
363 363
364 void CFFL_TextField::DoCopy(CPDFSDK_Document* pDocument)
365 {
366
367 }
368
369 void CFFL_TextField::DoCut(CPDFSDK_Document* pDocument)
370 {
371 }
372
373 void CFFL_TextField::DoPaste(CPDFSDK_Document* pDocument)
374 {
375
376 }
377
378 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) 364 void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit)
379 { 365 {
380 } 366 }
381 367
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698