| 63 | bool JsonCheckboxImpl::value() const FL_NOEXCEPT { return mInternal->value(); } |
| 64 | |
| 65 | void JsonCheckboxImpl::setValue(bool value) FL_NOEXCEPT { |
| 66 | bool oldValue = mInternal->value(); |
| 67 | mInternal->setValue(value); |
| 68 | |
| 69 | // If value actually changed, mark this component as changed for polling |
| 70 | if (mInternal->value() != oldValue) { |
| 71 | mInternal->markChanged(); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | fl::string JsonCheckboxImpl::groupName() const FL_NOEXCEPT { return mInternal->groupName(); } |
| 76 |
nothing calls this directly
no test coverage detected