| 38 | } |
| 39 | |
| 40 | std::shared_ptr<QWidget> CanSignalDecoder::getQConfig() const |
| 41 | { |
| 42 | const Q_D(CanSignalDecoder); |
| 43 | |
| 44 | auto config = configHelpers::getQConfig(getSupportedProperties(), d->_props); |
| 45 | |
| 46 | auto iter = d->_props.find("color"); |
| 47 | if (iter != d->_props.end()) { |
| 48 | config->setProperty("color", iter->second); |
| 49 | } |
| 50 | |
| 51 | return config; |
| 52 | } |
| 53 | |
| 54 | void CanSignalDecoder::configChanged() {} |
| 55 |
no test coverage detected