]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix on Bug GVIEW10205
authorapo <apo@opencascade.com>
Tue, 11 Oct 2005 06:07:27 +0000 (06:07 +0000)
committerapo <apo@opencascade.com>
Tue, 11 Oct 2005 06:07:27 +0000 (06:07 +0000)
 Incorrect restoring hdf files

src/VISU_I/VISU_ColoredPrs3d_i.cc

index 9325460c6a82f92d9a541b0c850c2b8904f52f75..4c6e2dff16796e98f0fa0573bf66ffb886f9365e 100644 (file)
@@ -43,8 +43,6 @@ static int MYDEBUG = 0;
 static int MYDEBUG = 0;
 #endif
 
-static int INCMEMORY = 4;
-
 
 //============================================================================
 VISU::ColoredPrs3d_i::
@@ -499,6 +497,8 @@ VISU::ColoredPrs3d_i
   myLabelColor[0] = aLabelColor.red()   / 255;
   myLabelColor[1] = aLabelColor.green() / 255;
   myLabelColor[2] = aLabelColor.blue()  / 255;
+
+  return this;
 }
 
 VISU::Storable* 
@@ -512,6 +512,8 @@ VISU::ColoredPrs3d_i
   myFieldName = VISU::Storable::FindValue(theMap,"myFieldName").latin1();
   myIteration = VISU::Storable::FindValue(theMap,"myIteration").toInt();
 
+  myAddToStudy = false; //SRN Added 21/06/2003 SAL2983: to avoid addition of the new ScalarMap to study.
+
   Build(true);
 
   TSuperClass::Restore(theMap);
@@ -543,8 +545,6 @@ VISU::ColoredPrs3d_i
   myLabelColor[1] = VISU::Storable::FindValue(theMap,"myLabelColor[1]").toFloat();
   myLabelColor[2] = VISU::Storable::FindValue(theMap,"myLabelColor[2]").toFloat();
 
-  myAddToStudy = false; //SRN Added 21/06/2003 SAL2983: to avoid addition of the new ScalarMap to study.
-
   return this;
 }