mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-19 19:09:28 +01:00
undo
git-svn-id: trunk@61011 -
This commit is contained in:
parent
ab0aa9bf2a
commit
a06e60a246
Binary file not shown.
@ -239,7 +239,10 @@ begin
|
||||
end;
|
||||
{$IFDEF CHMLOADTIMES}
|
||||
DebugLn(['CHMLOADTIMES: ',Format('Loading chm files took %d ms',[DateTimeToTimeStamp(Now-StartTime).Time])]);
|
||||
|
||||
{$ENDIF}
|
||||
|
||||
|
||||
finally
|
||||
fHelpConnection.EndUpdate;
|
||||
CHMFiles.Free;
|
||||
@ -448,7 +451,6 @@ var
|
||||
i: Integer;
|
||||
DB: TFPDocHTMLHelpDatabase;
|
||||
BaseURL: THelpBaseURLObject;
|
||||
HelpDB: THelpDatabase;
|
||||
begin
|
||||
inherited Create(TheOwner);
|
||||
fHelpConnection := TLHelpConnection.Create;
|
||||
@ -456,9 +458,7 @@ begin
|
||||
AddSupportedMimeType('application/x-chm');
|
||||
for i := 0 to HelpDatabases.Count-1 do
|
||||
begin
|
||||
HelpDB := HelpDatabases.Items[i];
|
||||
if not (HelpDB is TFPDocHTMLHelpDatabase) then continue;
|
||||
DB := TFPDocHTMLHelpDatabase(HelpDB);
|
||||
DB := TFPDocHTMLHelpDatabase(HelpDatabases.Items[i]);
|
||||
BaseURL := THelpBaseURLObject(DB.BasePathObject);
|
||||
if (DB.ID = 'RTLUnits') and (BaseURL.BaseURL = '') then
|
||||
begin
|
||||
@ -537,7 +537,7 @@ begin
|
||||
|
||||
SearchPath := GetHelpFilesPath;
|
||||
// Start up help viewer if needed - and tell it to hide
|
||||
if not (fHelpConnection.ServerRunning) then
|
||||
if not(fHelpConnection.ServerRunning) then
|
||||
begin
|
||||
fHelpConnection.StartHelpServer(HelpLabel, HelpExeFileName, true);
|
||||
Response := fHelpConnection.RunMiscCommand(mrVersion);
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="12"/>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<LRSInOutputDirectory Value="False"/>
|
||||
<CompatibilityMode Value="True"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InIDEConfig"/>
|
||||
<MainUnit Value="0"/>
|
||||
<Title Value="build_lcl_docs"/>
|
||||
</General>
|
||||
<BuildModes Count="1">
|
||||
@ -19,13 +19,13 @@
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
|
||||
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
|
||||
</local>
|
||||
<FormatVersion Value="2"/>
|
||||
<Modes Count="1">
|
||||
<Mode0 Name="default">
|
||||
<local>
|
||||
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
|
||||
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
|
||||
</local>
|
||||
</Mode0>
|
||||
</Modes>
|
||||
|
||||
Binary file not shown.
BIN
ide/lazarus.res
BIN
ide/lazarus.res
Binary file not shown.
@ -4678,9 +4678,8 @@ var
|
||||
PkgDependency: TPkgDependency;
|
||||
begin
|
||||
PkgDependency:=FindDependencyByNameInList(FirstRequiredDependency,pdlRequires,PackageName);
|
||||
Result := Assigned(PkgDependency);
|
||||
if Result then
|
||||
RemoveRequiredDependency(PkgDependency);
|
||||
if PkgDependency=nil then exit(false);
|
||||
RemoveRequiredDependency(PkgDependency);
|
||||
end;
|
||||
|
||||
procedure TProject.LockUnitComponentDependencies;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user