diff options
author | Lei Zhang <thestig@chromium.org> | 2015-08-10 00:06:39 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-08-10 00:06:39 -0700 |
commit | 3a3849176aa6e2db8baf2f9367b2d96c71815319 (patch) | |
tree | c5dee239777c9015710159ba5aee46f0d81b424c /fpdfsdk/src/formfiller/FFL_TextField.cpp | |
parent | 48f1947602817a3b5331b6504518e846addfbd71 (diff) | |
download | pdfium-3a3849176aa6e2db8baf2f9367b2d96c71815319.tar.xz |
Cleanup: Mark methods with the override keyword.chromium/2483chromium/2482chromium/2481chromium/2480chromium/2479
- Delete unneeded CFFL_ComboBox::CanCopy() and friends.
- Delete unneeded CFFL_FormFiller::CanCopy() and friends.
- Delete unneeded CFFL_TextField::CanCopy() and friends.
- Delete unneeded FormFiller::DoCopy() and friends.
- Rename CFFL_FormFiller::On{Set,Kill}Focus to avoid conflicts.
BUG=pdfium:185
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/1283493004 .
Diffstat (limited to 'fpdfsdk/src/formfiller/FFL_TextField.cpp')
-rw-r--r-- | fpdfsdk/src/formfiller/FFL_TextField.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/fpdfsdk/src/formfiller/FFL_TextField.cpp b/fpdfsdk/src/formfiller/FFL_TextField.cpp index 2acf6b8fda..b95ac9356f 100644 --- a/fpdfsdk/src/formfiller/FFL_TextField.cpp +++ b/fpdfsdk/src/formfiller/FFL_TextField.cpp @@ -287,22 +287,9 @@ void CFFL_TextField::OnSetFocus(CPWL_Wnd* pWnd) { nCharacters, TRUE); pEdit->SetEditNotify(this); - // pUndo->BeginEdit(pDocument); } } void CFFL_TextField::OnKillFocus(CPWL_Wnd* pWnd) {} -FX_BOOL CFFL_TextField::CanCopy(CPDFSDK_Document* pDocument) { - return FALSE; -} - -FX_BOOL CFFL_TextField::CanCut(CPDFSDK_Document* pDocument) { - return FALSE; -} - -FX_BOOL CFFL_TextField::CanPaste(CPDFSDK_Document* pDocument) { - return FALSE; -} - void CFFL_TextField::OnAddUndo(CPWL_Edit* pEdit) {} |