* \brief Insert some empty (or initialized with invalid values) rows */
| 324 | * \brief Insert some empty (or initialized with invalid values) rows |
| 325 | */ |
| 326 | void AbstractColumn::insertRows(int before, int count) { |
| 327 | beginMacro(i18np("%1: insert 1 row", "%1: insert %2 rows", name(), count)); |
| 328 | handleRowInsertion(before, count); |
| 329 | endMacro(); |
| 330 | } |
| 331 | |
| 332 | void AbstractColumn::handleRowInsertion(int before, int count) { |
| 333 | new AbstractColumnInsertRowsCmd(this, before, count); |