! enable/disable the sparkline header in the views of the selected spreadsheets. */
| 147 | enable/disable the sparkline header in the views of the selected spreadsheets. |
| 148 | */ |
| 149 | void SpreadsheetDock::sparklinesShownChanged(bool state) { |
| 150 | CONDITIONAL_LOCK_RETURN; |
| 151 | |
| 152 | for (auto* spreadsheet : m_spreadsheetList) |
| 153 | spreadsheet->setShowSparklines(state); |
| 154 | } |
| 155 | |
| 156 | void SpreadsheetDock::linkingChanged(bool linking) { |
| 157 | ui.sbRowCount->setEnabled(!linking); |
nothing calls this directly
no test coverage detected