From 124ec871a72a8cb16e9d1d09fb86c427a03d4dfb Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 24 Mar 2011 12:41:12 +0000 Subject: [PATCH] IPAL22352 : Help does not work if path to module containts spaces --- src/LightApp/LightApp_Application.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2