Make InList hadling and topological sort more robust. fixes #0002871

This commit is contained in:
Stefan Tröger
2017-06-04 14:44:48 +02:00
committed by wmayer
parent 03b63d3a40
commit ab85c6e784
5 changed files with 83 additions and 55 deletions

View File

@@ -516,7 +516,7 @@ Py::List DocumentPy::getObjects(void) const
return res;
}
Py::List DocumentPy::getToplogicalSortedObjects(void) const
Py::List DocumentPy::getTopologicalSortedObjects(void) const
{
std::vector<DocumentObject*> objs = getDocumentPtr()->topologicalSort();
Py::List res;