diff options
author | Diana Gage <drgage@google.com> | 2017-07-21 11:33:18 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-07-21 22:11:19 +0000 |
commit | 22bf7a5f796155ee3d1a4ea32e237a6d2034996d (patch) | |
tree | 04820b859411e0d5c45cbb238ac8b8266df53ea4 /fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp | |
parent | 06ac9c95c25289e84de7b13ae6264ce5ecb3b1a5 (diff) | |
download | pdfium-22bf7a5f796155ee3d1a4ea32e237a6d2034996d.tar.xz |
Change Clear() to ClearSelection().
This CL renames Clear() in CPWL_EditCtrl, CPWL_ComboBox, and CFX_Edit
to ClearSelection(), as this function's behavior is clearing text selection.
Change-Id: Ia32f5347abc1960d7219684942df6a3fede9936c
Reviewed-on: https://pdfium-review.googlesource.com/8611
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Diana Gage <drgage@google.com>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp b/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp index 726218989a..7b90579a5f 100644 --- a/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp +++ b/fpdfsdk/pdfwindow/cpwl_edit_ctrl.cpp @@ -169,7 +169,7 @@ bool CPWL_EditCtrl::OnKeyDown(uint16_t nChar, uint32_t nFlag) { return true; case FWL_VKEY_Unknown: if (!IsSHIFTpressed(nFlag)) - Clear(); + ClearSelection(); else CutText(); return true; @@ -233,7 +233,7 @@ bool CPWL_EditCtrl::OnChar(uint16_t nChar, uint32_t nFlag) { if (m_pEdit->IsSelected() && word == FWL_VKEY_Back) word = FWL_VKEY_Unknown; - Clear(); + ClearSelection(); switch (word) { case FWL_VKEY_Back: @@ -342,9 +342,9 @@ void CPWL_EditCtrl::GetSelection(int32_t& nStartChar, int32_t& nEndChar) const { m_pEdit->GetSelection(nStartChar, nEndChar); } -void CPWL_EditCtrl::Clear() { +void CPWL_EditCtrl::ClearSelection() { if (!IsReadOnly()) - m_pEdit->Clear(); + m_pEdit->ClearSelection(); } void CPWL_EditCtrl::SelectAll() { |