| 294 | m_private_obj->setRowCells(m_row, m_first_column, m_last_column, m_values); |
| 295 | } |
| 296 | void undo() override { |
| 297 | m_private_obj->setRowCells(m_row, m_first_column, m_last_column, m_old_values); |
| 298 | } |
| 299 | |
| 300 | private: |
| 301 | MatrixPrivate* m_private_obj; |
nothing calls this directly
no test coverage detected