! called when a column in the speadsheet view was clicked (click in the header). Propagates the selection of the column to the \c Spreadsheet object (a click in the header always selects the column). */
| 3671 | (a click in the header always selects the column). |
| 3672 | */ |
| 3673 | void SpreadsheetView::columnClicked(int column) { |
| 3674 | m_spreadsheet->setColumnSelectedInView(column, true); |
| 3675 | } |
| 3676 | |
| 3677 | /*! |
| 3678 | called on selections changes. Propagates the selection/deselection of columns to the \c Spreadsheet object. |
nothing calls this directly
no test coverage detected