+ fixes #0001501: Add Ability to Export Dependency Graph as SVG and PNG

This commit is contained in:
wmayer
2014-04-07 14:26:43 +02:00
parent 397ee6edde
commit f62ff52302
6 changed files with 323 additions and 54 deletions

View File

@@ -472,7 +472,7 @@ Py::List DocumentPy::getRedoNames(void) const
Py::String DocumentPy::getDependencyGraph(void) const
{
std::stringstream out;
getDocumentPtr()->writeDependencyGraphViz(out);
getDocumentPtr()->exportGraphviz(out);
return Py::String(out.str());
}