| 238 | */ |
| 239 | |
| 240 | void KUndo2Command::undo() |
| 241 | { |
| 242 | for (int i = d->child_list.size() - 1; i >= 0; --i) |
| 243 | d->child_list.at(i)->undo(); |
| 244 | } |
| 245 | |
| 246 | /*! |
| 247 | Returns a short text string describing what this command does; for example, |
nothing calls this directly
no test coverage detected