| 600 | } |
| 601 | |
| 602 | void MatrixView::handleHorizontalSectionResized(int logicalIndex, int /*oldSize*/, int newSize) { |
| 603 | m_matrix->setColumnWidth(logicalIndex, newSize); |
| 604 | } |
| 605 | |
| 606 | void MatrixView::handleVerticalSectionResized(int logicalIndex, int /*oldSize*/, int newSize) { |
| 607 | m_matrix->setRowHeight(logicalIndex, newSize); |
nothing calls this directly
no test coverage detected