From: eap Date: Tue, 10 May 2011 13:58:35 +0000 (+0000) Subject: 0021238: EDF 1817 SMESH: GHS3D on quadratic meshes X-Git-Tag: V6_3_0~11 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=20062d400a211538bc00d94bc51dbba25a7e9bb9;p=plugins%2Fhybridplugin.git 0021238: EDF 1817 SMESH: GHS3D on quadratic meshes In importGMFMesh(): + theMesh.GetMeshDS()->Modified(); --- diff --git a/src/GHS3DPlugin/GHS3DPlugin_GHS3D.cxx b/src/GHS3DPlugin/GHS3DPlugin_GHS3D.cxx index 6e438fe..7001def 100644 --- a/src/GHS3DPlugin/GHS3DPlugin_GHS3D.cxx +++ b/src/GHS3DPlugin/GHS3DPlugin_GHS3D.cxx @@ -4063,9 +4063,11 @@ bool GHS3DPlugin_GHS3D::importGMFMesh(const char* theGMFFileName, SMESH_Mesh& th // TopoDS_Shape theShape = theMesh.GetShapeToMesh(); vector dummyNodeVector; map dummyNodeMap; - return readGMFFile(theGMFFileName, + bool ok = readGMFFile(theGMFFileName, #ifdef WITH_SMESH_CANCEL_COMPUTE - this, + this, #endif - helper, theMesh.GetShapeToMesh(), dummyNodeVector, dummyNodeMap); + helper, theMesh.GetShapeToMesh(), dummyNodeVector, dummyNodeMap); + theMesh.GetMeshDS()->Modified(); + return ok; }