| 2188 | { |
| 2189 | idChecker.check(*actions); |
| 2190 | |
| 2191 | actionsHistory.redo(); |
| 2192 | *actions = actionsHistory.toVector(); |
| 2193 | |
| 2194 | idChecker.check(*actions); |
| 2195 | idChecker.reset(*actionsRoot); |
| 2196 | |
| 2197 | TableReload(); |
| 2198 | WidgetReload(); |
| 2199 | } |
| 2200 | } |
| 2201 | void EditUi::Undo() |
| 2202 | { |
| 2203 | if (actionsHistory.canUndo()) |
| 2204 | { |
| 2205 | idChecker.check(*actions); |
| 2206 | |
| 2207 | actionsHistory.undo(); |
| 2208 | *actions = actionsHistory.toVector(); |
nothing calls this directly
no test coverage detected