From: vsr Date: Fri, 18 Mar 2011 11:04:22 +0000 (+0000) Subject: PAL22319 : Salome is suspended,when we create new Local coordinate system X-Git-Tag: Start_BR_19998_21191~29 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1fde2f4863615fe7f7a6805df00d576c0faac189;p=modules%2Fgeom.git PAL22319 : Salome is suspended,when we create new Local coordinate system --- diff --git a/src/GEOMGUI/GEOM_Displayer.cxx b/src/GEOMGUI/GEOM_Displayer.cxx index 063cb70af..aff2f8320 100644 --- a/src/GEOMGUI/GEOM_Displayer.cxx +++ b/src/GEOMGUI/GEOM_Displayer.cxx @@ -1458,7 +1458,7 @@ void GEOM_Displayer::AfterDisplay( SALOME_View* v, const SALOME_OCCPrs* p ) AIS_ListOfInteractive objects; prs->GetObjects( objects ); AIS_ListIteratorOfListOfInteractive it( objects ); - while( it.More() ) { + for ( ; it.More(); it.Next() ) { Handle(GEOM_AISShape) sh = Handle(GEOM_AISShape)::DownCast( it.Value() ); if ( sh.IsNull() ) continue; Handle(SALOME_InteractiveObject) IO = sh->getIO(); @@ -1467,7 +1467,6 @@ void GEOM_Displayer::AfterDisplay( SALOME_View* v, const SALOME_OCCPrs* p ) if ( aPropMap.contains( TRANSPARENCY_PROP ) ) { double transparency = aPropMap.value(TRANSPARENCY_PROP).toDouble(); ic->SetTransparency( sh, transparency, true ); - it.Next(); } } }