* Make the value valid and then write it to the setting. * See #MakeValidValid and #Write for more details. * @param object The object the setting is to be saved in. * @param val Signed version of the new value. */
| 485 | * @param val Signed version of the new value. |
| 486 | */ |
| 487 | void IntSettingDesc::MakeValueValidAndWrite(const void *object, int32_t val) const |
| 488 | { |
| 489 | this->MakeValueValid(val); |
| 490 | this->Write(object, val); |
| 491 | } |
| 492 | |
| 493 | /** |
| 494 | * Make the value valid given the limitations of this setting. |
no test coverage detected