From: akl Date: Tue, 5 Nov 2013 05:52:44 +0000 (+0000) Subject: Correction of merge mistake. X-Git-Tag: BR_hydro_v_0_3_1~15 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3a0626f094e6757d9d1c710b7dd5be9bde5a59d2;p=modules%2Fgui.git Correction of merge mistake. --- diff --git a/src/LightApp/LightApp_SelectionMgr.cxx b/src/LightApp/LightApp_SelectionMgr.cxx index dcdae22e0..cc4c573ca 100644 --- a/src/LightApp/LightApp_SelectionMgr.cxx +++ b/src/LightApp/LightApp_SelectionMgr.cxx @@ -113,7 +113,7 @@ void LightApp_SelectionMgr::selectedObjects( SALOME_ListIO& theList, const QStri if ( !owner ) continue; - if ( !aSet.contains( owner->entry() ) ) { + if ( !aSet.contains( owner->entry() ) && !owner->IO().IsNull() ) { selList.append( owner->IO() ); aSet.insert( owner->entry() ); } @@ -209,7 +209,7 @@ void LightApp_SelectionMgr::selectedObjects( QStringList& theList, const QString if ( !owner ) continue; - if ( !aSet.contains( owner->entry() ) && !owner->IO().IsNull() ) { + if ( !aSet.contains( owner->entry() ) ) { selList.append( owner->entry() ); aSet.insert( owner->entry() ); }