]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
not to dump GetMeshOrder()
authoreap <eap@opencascade.com>
Fri, 16 Dec 2011 16:16:27 +0000 (16:16 +0000)
committereap <eap@opencascade.com>
Fri, 16 Dec 2011 16:16:27 +0000 (16:16 +0000)
src/SMESH_I/SMESH_Mesh_i.cxx

index c572748ea2c12b7c21ab0c34d2b5e95ec5c008cb..fddeb76c519ef2f0a67b2769eb70982ca91bd0d5 100644 (file)
@@ -4331,9 +4331,9 @@ SMESH::submesh_array_array* SMESH_Mesh_i::GetMeshOrder()
     removeDimHyps(dimHypListArr);
     
     // now, minimise the number of concurrent groups
-    // Here we assume that lists of submhes can has same submesh
+    // Here we assume that lists of submeshes can have same submesh
     // in case of multi-dimension algorithms, as result
-    //  list with common submesh have to be union into one list
+    //  list with common submesh has to be united into one list
     int listIndx = 0;
     TListOfListOfInt::iterator listIt = anOrder.begin();
     for(; listIt != anOrder.end(); listIt++, listIndx++ )
@@ -4341,7 +4341,7 @@ SMESH::submesh_array_array* SMESH_Mesh_i::GetMeshOrder()
   }
   // convert submesh ids into interface instances
   //  and dump command into python
-  convertMeshOrder( anOrder, aResult, true );
+  convertMeshOrder( anOrder, aResult, false );
 
   return aResult._retn();
 }