diff options
Diffstat (limited to 'xfa/fwl/cfwl_checkbox.cpp')
-rw-r--r-- | xfa/fwl/cfwl_checkbox.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/xfa/fwl/cfwl_checkbox.cpp b/xfa/fwl/cfwl_checkbox.cpp index 7e78efae63..290e59daae 100644 --- a/xfa/fwl/cfwl_checkbox.cpp +++ b/xfa/fwl/cfwl_checkbox.cpp @@ -179,21 +179,6 @@ void CFWL_CheckBox::NextStates() { if (m_pProperties->m_dwStyleExes & FWL_STYLEEXT_CKB_RadioButton) { if ((m_pProperties->m_dwStates & FWL_STATE_CKB_CheckMask) == FWL_STATE_CKB_Unchecked) { - CFWL_WidgetMgr* pWidgetMgr = GetOwnerApp()->GetWidgetMgr(); - if (!pWidgetMgr->IsFormDisabled()) { - std::vector<CFWL_Widget*> radioarr = - pWidgetMgr->GetSameGroupRadioButton(this); - for (auto* pWidget : radioarr) { - CFWL_CheckBox* pCheckBox = static_cast<CFWL_CheckBox*>(pWidget); - if (pCheckBox != this && - pCheckBox->GetStates() & FWL_STATE_CKB_Checked) { - pCheckBox->SetCheckState(0); - m_pWidgetMgr->RepaintWidget( - pCheckBox, CFX_RectF(0, 0, pCheckBox->GetWidgetRect().Size())); - break; - } - } - } m_pProperties->m_dwStates |= FWL_STATE_CKB_Checked; } } else { |