This method should only be called by the view. This method does not change the view, it only changes the * values that are saved when the matrix is saved. The view * has to take care of reading and applying these values */
| 604 | * values that are saved when the matrix is saved. The view |
| 605 | * has to take care of reading and applying these values */ |
| 606 | void Matrix::setColumnWidth(int col, int width) { |
| 607 | Q_D(Matrix); |
| 608 | d->setColumnWidth(col, width); |
| 609 | } |
| 610 | |
| 611 | int Matrix::rowHeight(int row) const { |
| 612 | Q_D(const Matrix); |
no outgoing calls
no test coverage detected