columns
| 327 | |
| 328 | // columns |
| 329 | void Matrix::insertColumns(int before, int count) { |
| 330 | Q_D(Matrix); |
| 331 | if (count < 1 || before < 0 || before > columnCount()) |
| 332 | return; |
| 333 | WAIT_CURSOR; |
| 334 | exec(new MatrixInsertColumnsCmd(d, before, count)); |
| 335 | RESET_CURSOR; |
| 336 | } |
| 337 | |
| 338 | void Matrix::appendColumns(int count) { |
| 339 | insertColumns(columnCount(), count); |
no test coverage detected