X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_ShapeByMeshDlg.cxx;h=d1a2dd8b3a30611986d144ffa2520b93c7b7a52d;hp=9c63004b331ffc0b9ded4916c9a3bd6b2b1e5022;hb=52d825495306f72048c8754aa5c86c6a390f8262;hpb=5d68554076bbca0e1e95fb0db215a6c2b84b6c54 diff --git a/src/SMESHGUI/SMESHGUI_ShapeByMeshDlg.cxx b/src/SMESHGUI/SMESHGUI_ShapeByMeshDlg.cxx index 9c63004b3..d1a2dd8b3 100644 --- a/src/SMESHGUI/SMESHGUI_ShapeByMeshDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_ShapeByMeshDlg.cxx @@ -331,7 +331,7 @@ void SMESHGUI_ShapeByMeshOp::commitOperation() TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE; - std::map aGeomObjectsMap; + std::map aGeomObjectsMap; GEOM::GEOM_Object_wrap aGeomObject; GEOM::GEOM_Object_var aMeshShape = myMesh->GetShapeToMesh(); @@ -343,7 +343,7 @@ void SMESHGUI_ShapeByMeshOp::commitOperation() if (aGeomObject->_is_nil()) continue; - double anId = aShapesOp->GetSubShapeIndex(aMeshShape, aGeomObject); + int anId = aShapesOp->GetSubShapeIndex(aMeshShape, aGeomObject); if (aShapesOp->IsDone() && !aGeomObjectsMap.count(anId) ) { aGeomObjectsMap[anId] = aGeomObject; @@ -372,13 +372,13 @@ void SMESHGUI_ShapeByMeshOp::commitOperation() aGeomObjects->length( aNumberOfGO ); int i = 0; - std::map::iterator anIter; + std::map::iterator anIter; for (anIter = aGeomObjectsMap.begin(); anIter!=aGeomObjectsMap.end(); anIter++) - aGeomObjects[i++] = (*anIter).second.in(); + aGeomObjects[i++] = GEOM::GEOM_Object::_duplicate( (*anIter).second.in() ); //create geometry group aGeomObject = aGroupOp->CreateGroup(aMeshShape, aGroupType); - aGroupOp->UnionList(myGeomObj, aGeomObjects); + aGroupOp->UnionList(aGeomObject, aGeomObjects); if (!aGroupOp->IsDone()) return;