diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-05-11 20:59:06 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-11 20:59:06 +0000 |
commit | d6cdd0dd2e61ecbdc652f72f84658b8502d83703 (patch) | |
tree | f0a2928f602660796b4b5b21f34b2b7fc72614de /xfa/fwl/cfwl_checkbox.cpp | |
parent | b222dbb346cb5b72c28fb7789613a88f64d9acb6 (diff) | |
download | pdfium-d6cdd0dd2e61ecbdc652f72f84658b8502d83703.tar.xz |
Remove CFWL_Widget::SetFocus(). It is non-op.
Change-Id: I707273c81d51124cf6ca7ba43cf1a817f3c852ea
Reviewed-on: https://pdfium-review.googlesource.com/32412
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fwl/cfwl_checkbox.cpp')
-rw-r--r-- | xfa/fwl/cfwl_checkbox.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xfa/fwl/cfwl_checkbox.cpp b/xfa/fwl/cfwl_checkbox.cpp index 290e59daae..d39cd534af 100644 --- a/xfa/fwl/cfwl_checkbox.cpp +++ b/xfa/fwl/cfwl_checkbox.cpp @@ -267,8 +267,6 @@ void CFWL_CheckBox::OnFocusChanged(bool bSet) { void CFWL_CheckBox::OnLButtonDown() { if (m_pProperties->m_dwStates & FWL_WGTSTATE_Disabled) return; - if ((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) == 0) - SetFocus(true); m_bBtnDown = true; m_pProperties->m_dwStates &= ~FWL_STATE_CKB_Hovered; |