| 628 | //! Set the values in the given cells from a type T vector |
| 629 | template<typename T> |
| 630 | void Matrix::setColumnCells(int col, int first_row, int last_row, const QVector<T>& values) { |
| 631 | WAIT_CURSOR; |
| 632 | Q_D(Matrix); |
| 633 | exec(new MatrixSetColumnCellsCmd<T>(d, col, first_row, last_row, values)); |
| 634 | RESET_CURSOR; |
| 635 | } |
| 636 | |
| 637 | //! Return the values in the given cells as vector (needs explicit instantiation) |
| 638 | template<typename T> |