| 22 | } |
| 23 | |
| 24 | void MatrixInsertColumnsCmd::redo() { |
| 25 | m_private_obj->insertColumns(m_before, m_count); |
| 26 | Q_EMIT m_private_obj->q->columnCountChanged(m_private_obj->columnCount()); |
| 27 | } |
| 28 | |
| 29 | void MatrixInsertColumnsCmd::undo() { |
| 30 | m_private_obj->removeColumns(m_before, m_count); |
nothing calls this directly
no test coverage detected