| 648 | //! Set the values in the given cells from a type T vector |
| 649 | template<typename T> |
| 650 | void Matrix::setRowCells(int row, int first_column, int last_column, const QVector<T>& values) { |
| 651 | WAIT_CURSOR; |
| 652 | Q_D(Matrix); |
| 653 | exec(new MatrixSetRowCellsCmd<T>(d, row, first_column, last_column, values)); |
| 654 | RESET_CURSOR; |
| 655 | } |
| 656 | |
| 657 | void Matrix::setData(void* data) { |
| 658 | bool isEmpty = false; |