From 3a0626f094e6757d9d1c710b7dd5be9bde5a59d2 Mon Sep 17 00:00:00 2001 From: akl Date: Tue, 5 Nov 2013 05:52:44 +0000 Subject: [PATCH] Correction of merge mistake. --- src/LightApp/LightApp_SelectionMgr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() ); } -- 2.39.2