| 267 | } |
| 268 | |
| 269 | void ValueWidget::precisionChanged(int precision) { |
| 270 | CONDITIONAL_LOCK_RETURN; |
| 271 | |
| 272 | for (auto* value : m_values) |
| 273 | value->setPrecision(precision); |
| 274 | } |
| 275 | |
| 276 | void ValueWidget::dateTimeFormatChanged(const QString& format) { |
| 277 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected