From 11766fd91d9c7511f7eaf30baeeb92d71b80bf90 Mon Sep 17 00:00:00 2001 From: asv Date: Fri, 8 Jul 2005 10:59:32 +0000 Subject: [PATCH] "client" parameter is returned now ONLY by globalParam() function. --- src/SalomeApp/SalomeApp_Selection.cxx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/SalomeApp/SalomeApp_Selection.cxx b/src/SalomeApp/SalomeApp_Selection.cxx index d3e26a304..4bba53662 100644 --- a/src/SalomeApp/SalomeApp_Selection.cxx +++ b/src/SalomeApp/SalomeApp_Selection.cxx @@ -48,16 +48,13 @@ int SalomeApp_Selection::count() const QtxValue SalomeApp_Selection::param( const int, const QString& p ) const { - if( p=="client" ) - return myPopupClient; - else - return QtxValue(); + return QtxValue(); } QtxValue SalomeApp_Selection::globalParam( const QString& p ) const { if( p=="client" ) - return myPopupClient; + return QtxValue( myPopupClient ); else if ( p=="activeView" ) { QString aViewType = ""; -- 2.39.2