! toggles the column spark line in the horizontal header */
| 1150 | toggles the column spark line in the horizontal header |
| 1151 | */ |
| 1152 | void SpreadsheetView::toggleSparklines() { |
| 1153 | bool state = !m_spreadsheet->showSparklines(); |
| 1154 | m_spreadsheet->setShowSparklines(state); |
| 1155 | showSparklines(state); |
| 1156 | } |
| 1157 | |
| 1158 | //! Shows (\c on=true) or hides (\c on=false) the column comments in the horizontal header |
| 1159 | void SpreadsheetView::showComments(bool on) { |
nothing calls this directly
no test coverage detected