| 253 | } |
| 254 | |
| 255 | RemoveMultipleNodesCommand::~RemoveMultipleNodesCommand() |
| 256 | { |
| 257 | if (_isRedone) { |
| 258 | for (std::list<NodeToRemove>::iterator it = _nodes.begin(); it != _nodes.end(); ++it) { |
| 259 | NodeGuiPtr n = it->node.lock(); |
| 260 | if (n) { |
| 261 | n->getNode()->destroyNode(false, false); |
| 262 | } |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void |
| 268 | RemoveMultipleNodesCommand::undo() |
nothing calls this directly
no test coverage detected