mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 05:56:02 +02:00
fixed bug where a new lhelp process could be started each time F1 was pressed
git-svn-id: trunk@37826 -
This commit is contained in:
parent
140a228eb0
commit
7cc9b49f82
@ -153,10 +153,6 @@
|
||||
</Optimizations>
|
||||
</CodeGeneration>
|
||||
<Linking>
|
||||
<Debugging>
|
||||
<GenerateDebugInfo Value="False"/>
|
||||
<DebugInfoType Value="dsStabs"/>
|
||||
</Debugging>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
|
@ -147,7 +147,7 @@ function TLHelpConnection.ServerRunning: Boolean;
|
||||
{$IFDEF STALE_PIPE_WORKAROUND}
|
||||
{$ENDIF}
|
||||
begin
|
||||
Result := (fServerOut<>nil) and (fServerOut.Active);
|
||||
Result := (fServerOut<>nil) and (fServerOut.ServerRunning);
|
||||
{$IFDEF STALE_PIPE_WORKAROUND}
|
||||
if not Result then
|
||||
Exit; // ==>
|
||||
|
Loading…
Reference in New Issue
Block a user