| 1321 | /////////////// |
| 1322 | |
| 1323 | ExtractNodeUndoRedoCommand::ExtractNodeUndoRedoCommand(NodeGraph* graph, |
| 1324 | const std::list<NodeGuiPtr> & nodes) |
| 1325 | : QUndoCommand() |
| 1326 | , _graph(graph) |
| 1327 | , _trees() |
| 1328 | { |
| 1329 | extractTreesFromNodes(nodes, _trees); |
| 1330 | setText( tr("Extract node") ); |
| 1331 | } |
| 1332 | |
| 1333 | ExtractNodeUndoRedoCommand::~ExtractNodeUndoRedoCommand() |
| 1334 | { |
nothing calls this directly
no test coverage detected