| 480 | } |
| 481 | |
| 482 | void WorksheetDock::layoutRowCountChanged(int count) { |
| 483 | CONDITIONAL_LOCK_RETURN; |
| 484 | |
| 485 | for (auto* worksheet : m_worksheetList) |
| 486 | worksheet->setLayoutRowCount(count); |
| 487 | } |
| 488 | |
| 489 | void WorksheetDock::layoutColumnCountChanged(int count) { |
| 490 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected