]> SALOME platform Git repositories - modules/smesh.git/commitdiff
Salome HOME
Temporary patch from VSR: manually created mesh is not checked in
authorvsr <vsr@opencascade.com>
Thu, 6 Dec 2012 09:26:06 +0000 (09:26 +0000)
committervsr <vsr@opencascade.com>
Thu, 6 Dec 2012 09:26:06 +0000 (09:26 +0000)
src/SMESH_I/SMESH_Gen_i.cxx

index 9f624af5513debbc19def687cc498638cd9406de..30cb71cb9717692353d80785a346ba052b2147e2 100644 (file)
@@ -288,6 +288,9 @@ SMESH_Gen_i::SMESH_Gen_i( CORBA::ORB_ptr            orb,
   myIsHistoricalPythonDump = true;
   myToForgetMeshDataOnHypModif = false;
 
+  myImportedStudyChanged = true;
+  myImportedStudyId      = 0;
+
   // set it in standalone mode only
   //OSD::SetSignal( true );
 
@@ -4937,7 +4940,7 @@ Engines::ListOfData* SMESH_Gen_i::getModifiedData(CORBA::Long studyId)
 {
   Engines::ListOfData_var aResult = new Engines::ListOfData;
   
-  if (!myImportedStudyChanged) {
+  if (myImportStudyId == 0 || !myImportedStudyChanged) {
     MESSAGE("Study is not changed")
     return aResult._retn();
   }