diff options
Diffstat (limited to 'xfa/fwl/cfwl_checkbox.cpp')
-rw-r--r-- | xfa/fwl/cfwl_checkbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/cfwl_checkbox.cpp b/xfa/fwl/cfwl_checkbox.cpp index 0102bc7cc4..ca31094fe6 100644 --- a/xfa/fwl/cfwl_checkbox.cpp +++ b/xfa/fwl/cfwl_checkbox.cpp @@ -184,7 +184,7 @@ void CFWL_CheckBox::NextStates() { if (!pWidgetMgr->IsFormDisabled()) { std::vector<CFWL_Widget*> radioarr = pWidgetMgr->GetSameGroupRadioButton(this); - for (const auto& pWidget : radioarr) { + for (auto* pWidget : radioarr) { CFWL_CheckBox* pCheckBox = static_cast<CFWL_CheckBox*>(pWidget); if (pCheckBox != this && pCheckBox->GetStates() & FWL_STATE_CKB_Checked) { |