| 257 | } |
| 258 | |
| 259 | void ButtonWidget::setChecked(bool checked) { |
| 260 | // might cause button groups to have multiple selected against its rules, be careful with direct poking, use check() |
| 261 | // instead. |
| 262 | m_checked = checked; |
| 263 | } |
| 264 | |
| 265 | void ButtonWidget::check() { |
| 266 | if (m_checkable) { |
no outgoing calls
no test coverage detected