| 473 | } |
| 474 | |
| 475 | void WorksheetDock::layoutVerticalSpacingChanged(double spacing) { |
| 476 | CONDITIONAL_RETURN_NO_LOCK; |
| 477 | |
| 478 | for (auto* worksheet : m_worksheetList) |
| 479 | worksheet->setLayoutVerticalSpacing(Worksheet::convertToSceneUnits(spacing, m_worksheetUnit)); |
| 480 | } |
| 481 | |
| 482 | void WorksheetDock::layoutRowCountChanged(int count) { |
| 483 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected