From: asl Date: Fri, 11 Nov 2005 09:31:26 +0000 (+0000) Subject: PAL10471 - incorrect popup for objects hidden in OCCViewer, but selected in Object... X-Git-Tag: V3_1_0a3~28 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fe18fe92982cd71f1cc00fed45a822c9662ac12b;p=modules%2Fgui.git PAL10471 - incorrect popup for objects hidden in OCCViewer, but selected in Object Browser --- diff --git a/src/LightApp/LightApp_Selection.cxx b/src/LightApp/LightApp_Selection.cxx index bf2d2198b..ee344c859 100644 --- a/src/LightApp/LightApp_Selection.cxx +++ b/src/LightApp/LightApp_Selection.cxx @@ -39,7 +39,9 @@ void LightApp_Selection::init( const QString& client, LightApp_SelectionMgr* mgr return; SUIT_DataOwnerPtrList sel; - mgr->selected( sel, client ); + //asl: fix for PAL10471 + //mgr->selected( sel, client ); + mgr->selected( sel ); SUIT_DataOwnerPtrList::const_iterator anIt = sel.begin(), aLast = sel.end(); QString entry, curEntry;