From: asv Date: Fri, 8 Jul 2005 10:59:32 +0000 (+0000) Subject: "client" parameter is returned now ONLY by globalParam() function. X-Git-Tag: V3_0_1~80 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=11766fd91d9c7511f7eaf30baeeb92d71b80bf90;p=modules%2Fgui.git "client" parameter is returned now ONLY by globalParam() function. --- 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 = "";