| 60 | } |
| 61 | |
| 62 | void WidgetSettingBool::OnClicked() { |
| 63 | this->data().value = this->field->isChecked(); |
| 64 | |
| 65 | Configurator& configurator = Configurator::Get(); |
| 66 | |
| 67 | ::CheckMessage(configurator.ignored_messages, this->meta, this->data_set); |
| 68 | |
| 69 | emit refreshEnableOnly(); |
| 70 | } |
| 71 | |
| 72 | SettingDataBool& WidgetSettingBool::data() { |
| 73 | SettingDataBool* data = FindSetting<SettingDataBool>(this->data_set, this->meta.key.c_str()); |
nothing calls this directly
no test coverage detected