! * Inserts a row before the last row index in the spreadsheet. */
| 332 | * Inserts a row before the last row index in the spreadsheet. |
| 333 | */ |
| 334 | void Spreadsheet::appendRow() { |
| 335 | insertRows(rowCount(), 1); |
| 336 | } |
| 337 | |
| 338 | /*! |
| 339 | * Removes all rows in the spreadsheet in which the value of one or more of its columns is missing/empty. |
no test coverage detected