From: vsr Date: Thu, 24 Mar 2011 12:41:12 +0000 (+0000) Subject: IPAL22352 : Help does not work if path to module containts spaces X-Git-Tag: V6_3_0a1~19 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=124ec871a72a8cb16e9d1d09fb86c427a03d4dfb;p=modules%2Fgui.git IPAL22352 : Help does not work if path to module containts spaces --- diff --git a/src/LightApp/LightApp_Application.cxx b/src/LightApp/LightApp_Application.cxx index d261d6ef3..1a51d3801 100644 --- a/src/LightApp/LightApp_Application.cxx +++ b/src/LightApp/LightApp_Application.cxx @@ -918,7 +918,7 @@ public: virtual void run() { if ( !myApp.isEmpty()) { - QString aCommand = QString( "%1 %2 %3" ).arg( myApp, myParams, myHelpFile ); + QString aCommand = QString( "%1 %2 \"%3\"" ).arg( myApp, myParams, myHelpFile ); if ( !myContext.isEmpty() ) aCommand += "#" + myContext;