| 34 | #define LOAD(field) this->field = conf.get(STRINGFY(field), this->field) |
| 35 | |
| 36 | void |
| 37 | InspToolWidgetConfig::deserialize(Suscan::Object const &conf) |
| 38 | { |
| 39 | LOAD(collapsed); |
| 40 | LOAD(inspectorClass); |
| 41 | LOAD(inspFactory); |
| 42 | LOAD(precise); |
| 43 | LOAD(palette); |
| 44 | LOAD(paletteOffset); |
| 45 | LOAD(paletteContrast); |
| 46 | LOAD(autoSquelchTriggerSNR); |
| 47 | } |
| 48 | |
| 49 | Suscan::Object && |
| 50 | InspToolWidgetConfig::serialize(void) |
nothing calls this directly
no outgoing calls
no test coverage detected