Shows (\c on=true) or hides (\c on=false) the column comments in the horizontal header
| 1157 | |
| 1158 | //! Shows (\c on=true) or hides (\c on=false) the column comments in the horizontal header |
| 1159 | void SpreadsheetView::showComments(bool on) { |
| 1160 | m_horizontalHeader->showComments(on); |
| 1161 | if (action_toggle_comments) { |
| 1162 | if (on) |
| 1163 | action_toggle_comments->setText(i18n("Hide Comments")); |
| 1164 | else |
| 1165 | action_toggle_comments->setText(i18n("Show Comments")); |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | //! Shows (\c on=true) or hides (\c on=false) the column sparkline in the horizontal header |
| 1170 | void SpreadsheetView::showSparklines(bool on) { |
no test coverage detected