From 1fde2f4863615fe7f7a6805df00d576c0faac189 Mon Sep 17 00:00:00 2001 From: vsr Date: Fri, 18 Mar 2011 11:04:22 +0000 Subject: [PATCH] PAL22319 : Salome is suspended,when we create new Local coordinate system --- src/GEOMGUI/GEOM_Displayer.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); } } } -- 2.39.2