| 27 | } |
| 28 | |
| 29 | void MatrixInsertColumnsCmd::undo() { |
| 30 | m_private_obj->removeColumns(m_before, m_count); |
| 31 | Q_EMIT m_private_obj->q->columnCountChanged(m_private_obj->columnCount()); |
| 32 | } |
| 33 | |
| 34 | // Insert rows |
| 35 | MatrixInsertRowsCmd::MatrixInsertRowsCmd(MatrixPrivate* private_obj, int before, int count, QUndoCommand* parent) |
nothing calls this directly
no test coverage detected