SLOTs for changes triggered in SpreadsheetDock
| 121 | //****** SLOTs for changes triggered in SpreadsheetDock ******* |
| 122 | //************************************************************* |
| 123 | void SpreadsheetDock::rowCountChanged(int rows) { |
| 124 | CONDITIONAL_LOCK_RETURN; |
| 125 | |
| 126 | for (auto* spreadsheet : m_spreadsheetList) |
| 127 | spreadsheet->setRowCount(rows); |
| 128 | } |
| 129 | |
| 130 | void SpreadsheetDock::columnCountChanged(int columns) { |
| 131 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected