* \brief Undo the command */
| 62 | * \brief Undo the command |
| 63 | */ |
| 64 | void AbstractColumnClearMasksCmd::undo() { |
| 65 | m_col->m_masking = m_masking; |
| 66 | finalize(); |
| 67 | } |
| 68 | |
| 69 | void AbstractColumnClearMasksCmd::finalize() const { |
| 70 | // TODO: implement AbstractColumn::setChanged() instead of these two calls, |
nothing calls this directly
no test coverage detected