GeoFeatureGroup: Make link collection non-DAG save

This commit is contained in:
Stefan Tröger
2017-06-03 15:18:40 +02:00
committed by wmayer
parent bfb95e3d12
commit 4ecd831bfd
8 changed files with 60 additions and 87 deletions

View File

@@ -108,7 +108,8 @@ void ensureCorrectGroups(PropertyContainer* container, App::DocumentObject* obje
if(cont->isRestoring() || object->isRestoring())
return;
auto objs = GeoFeatureGroupExtension::getCSRelevantLinks(object);
std::vector< DocumentObject* > objs;
GeoFeatureGroupExtension::getCSRelevantLinks(object, objs);
objs.push_back(object);
for(auto obj : objs) {