FIX: Bug [0001117] A few typos

This commit is contained in:
Alexander Koblov 2016-10-21 18:45:58 +00:00
commit bd6ceb05dd
2 changed files with 2 additions and 2 deletions

View file

@ -94,7 +94,7 @@ function ExecCmdFork(sCmd: String): Boolean;
{en
Execute external commands
@param(sCmd The executable)
@param(sParams The optional paramters)
@param(sParams The optional parameters)
@param(sStartPath The initial working directory)
@param(bShowCommandLinePriorToExecute Flag indicating if we want the user to be prompted at the very last
seconds prior to launch execution by offering a dialog window where

View file

@ -98,7 +98,7 @@ begin
sCmd := ExtTool.Path;
sParams := ExtTool.Parameters;
//If there is %p already configured in the parameter, we assume user configured it the way he wants.
//This might be in non-common case where there are paramters AFTER the filename to open.
//This might be in non-common case where there are parameters AFTER the filename to open.
//If there is not %p, let's do thing like legacy was and let's add the filename received as paramter.
if pos('%p',sParams)=0 then
sParams := ConcatenateStrWithSpace(sParams,QuoteFilenameIfNecessary(sFileName));