| 1114 | } |
| 1115 | |
| 1116 | void SpreadsheetView::selectCell(int row, int col) { |
| 1117 | m_tableView->selectionModel()->select(m_model->index(row, col), QItemSelectionModel::Select); |
| 1118 | } |
| 1119 | |
| 1120 | void SpreadsheetView::clearSelection() { |
| 1121 | m_tableView->selectionModel()->clear(); |
no test coverage detected