* \brief Execute the command */
| 50 | * \brief Execute the command |
| 51 | */ |
| 52 | void AbstractColumnClearMasksCmd::redo() { |
| 53 | if (!m_copied) { |
| 54 | m_masking = m_col->m_masking; |
| 55 | m_copied = true; |
| 56 | } |
| 57 | m_col->m_masking.clear(); |
| 58 | finalize(); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * \brief Undo the command |
nothing calls this directly
no test coverage detected