* \brief Undo the command */
| 170 | * \brief Undo the command |
| 171 | */ |
| 172 | void ColumnSetModeCmd::undo() { |
| 173 | // reset to old values |
| 174 | m_col->replaceModeData(m_old_mode, m_old_data, m_old_in_filter, m_old_out_filter); |
| 175 | // setLabelsMode will be done in replaceModeData() |
| 176 | |
| 177 | m_undone = true; |
| 178 | } |
| 179 | |
| 180 | /** *************************************************************************** |
| 181 | * \class ColumnFullCopyCmd |
nothing calls this directly
no test coverage detected