| 154 | } |
| 155 | |
| 156 | void SpreadsheetDock::linkingChanged(bool linking) { |
| 157 | ui.sbRowCount->setEnabled(!linking); |
| 158 | ui.lLinkedSpreadsheet->setVisible(linking); |
| 159 | ui.cbLinkedSpreadsheet->setVisible(linking); |
| 160 | |
| 161 | CONDITIONAL_LOCK_RETURN; |
| 162 | |
| 163 | for (auto* spreadsheet : m_spreadsheetList) |
| 164 | spreadsheet->setLinking(linking); |
| 165 | } |
| 166 | |
| 167 | void SpreadsheetDock::linkedSpreadsheetChanged(const QModelIndex& index) { |
| 168 | // combobox was potentially red-highlighted because of a missing column |
nothing calls this directly
no test coverage detected