From: vsv Date: Mon, 12 May 2008 08:13:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: TG_VISU_2008_2008-06-26~51 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=95b47af6578b50139d09bfcbf6b68104e02af454;p=modules%2Fvisu.git *** empty log message *** --- diff --git a/src/VISU_I/VISU_ColoredPrs3d_i.cc b/src/VISU_I/VISU_ColoredPrs3d_i.cc index 045c26ad..82cc566e 100644 --- a/src/VISU_I/VISU_ColoredPrs3d_i.cc +++ b/src/VISU_I/VISU_ColoredPrs3d_i.cc @@ -778,8 +778,8 @@ VISU::ColoredPrs3d_i VISU::TSetModified aModified(this); vtkFloatingPointType aScalarRange[2] = {theMin, theMax}; - ProcessVoidEvent(new TVoidMemFun1ArgEvent - (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange)); + ProcessVoidEvent(new TVoidMemFun2ArgEvent + (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange, false)); UseFixedRange(true); } @@ -798,8 +798,8 @@ VISU::ColoredPrs3d_i (GetSpecificPL(), &VISU_ColoredPL::SetSourceRange)); }else{ vtkFloatingPointType aScalarRange[2] = {GetSourceMin(), GetSourceMax()}; - ProcessVoidEvent(new TVoidMemFun1ArgEvent - (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange)); + ProcessVoidEvent(new TVoidMemFun2ArgEvent + (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange, false)); } UseFixedRange(false); } diff --git a/src/VISU_I/VISU_GaussPoints_i.cc b/src/VISU_I/VISU_GaussPoints_i.cc index 42e007a0..87453dcb 100644 --- a/src/VISU_I/VISU_GaussPoints_i.cc +++ b/src/VISU_I/VISU_GaussPoints_i.cc @@ -1091,8 +1091,8 @@ VISU::GaussPoints_i VISU::TSetModified aModified(this); vtkFloatingPointType aScalarRange[2] = {GetSourceMin(), GetSourceMax()}; - ProcessVoidEvent(new TVoidMemFun1ArgEvent - (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange)); + ProcessVoidEvent(new TVoidMemFun2ArgEvent + (GetSpecificPL(), &VISU_ColoredPL::SetScalarRange, aScalarRange, false)); UseFixedRange(false); }