* \brief Remove 'count' rows starting from row 'first' */
| 337 | * \brief Remove 'count' rows starting from row 'first' |
| 338 | */ |
| 339 | void AbstractColumn::removeRows(int first, int count) { |
| 340 | beginMacro(i18np("%1: remove 1 row", "%1: remove %2 rows", name(), count)); |
| 341 | handleRowRemoval(first, count); |
| 342 | endMacro(); |
| 343 | } |
| 344 | |
| 345 | void AbstractColumn::handleRowRemoval(int first, int count) { |
| 346 | new AbstractColumnRemoveRowsCmd(this, first, count); |