chmhelp: less hints

git-svn-id: trunk@53146 -
This commit is contained in:
mattias 2016-10-17 13:56:45 +00:00
parent f613ed6239
commit 23483185bf

View File

@ -228,14 +228,14 @@ begin
begin begin
// application bundle // application bundle
// to put lhelp into the foreground, use "open -n" // to put lhelp into the foreground, use "open -n"
Cmd:='/usr/bin/open -n '+ServerEXE+' --args --ipcname ' + NameForServer Cmd:='/usr/bin/open -n '+ServerEXE+' --args --ipcname ' + NameForServer;
end; end;
{$ENDIF} {$ENDIF}
with TProcessUTF8.Create(nil) do with TProcessUTF8.Create(nil) do
begin begin
InheritHandles := false; InheritHandles := false;
ShowWindow:=swoShowNormal; ShowWindow:=swoShowNormal;
CommandLine := Cmd; ParseCmdLine(Cmd);
debugln('TLHelpConnection.StartHelpServer: going to start help server by executing '+Cmd); debugln('TLHelpConnection.StartHelpServer: going to start help server by executing '+Cmd);
Execute; Execute;
Free; Free;