| 259 | } |
| 260 | |
| 261 | void ValueWidget::numericFormatChanged(int index) { |
| 262 | CONDITIONAL_LOCK_RETURN; |
| 263 | |
| 264 | char format = ui.cbNumericFormat->itemData(index).toChar().toLatin1(); |
| 265 | for (auto* value : m_values) |
| 266 | value->setNumericFormat(format); |
| 267 | } |
| 268 | |
| 269 | void ValueWidget::precisionChanged(int precision) { |
| 270 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected