* Updates the internals of the underlying CsvTable and its display in CsvGrid */
| 729 | * Updates the internals of the underlying CsvTable and its display in CsvGrid |
| 730 | */ |
| 731 | void CsvWindow::updateTable() { |
| 732 | table->updateInternals(); |
| 733 | grid->rows( table->getNumberRows() ); |
| 734 | grid->cols( table->getNumberCols() ); |
| 735 | grid->redraw(); |
| 736 | } |
| 737 | |
| 738 | |
| 739 | /* |
no test coverage detected