| 430 | } |
| 431 | |
| 432 | void ColumnDock::numericFormatChanged(int index) { |
| 433 | CONDITIONAL_LOCK_RETURN; |
| 434 | |
| 435 | char format = ui.cbNumericFormat->itemData(index).toChar().toLatin1(); |
| 436 | for (auto* col : std::as_const(m_columnsList)) { |
| 437 | auto* filter = static_cast<Double2StringFilter*>(col->outputFilter()); |
| 438 | filter->setNumericFormat(format); |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | void ColumnDock::precisionChanged(int digits) { |
| 443 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected