mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 02:18:03 +02:00
Tools/chmmaker: Fix crash when editing table-of-contents of loaded sample project.
This commit is contained in:
parent
fcb70e903a
commit
61ad4be039
@ -14,6 +14,7 @@ var
|
||||
i: Integer;
|
||||
Filename: String;
|
||||
begin
|
||||
Application.Title:='';
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TCHMForm, CHMForm);
|
||||
Application.CreateForm(TSitemapEditForm, SitemapEditForm);
|
||||
|
@ -266,7 +266,8 @@ procedure TSitemapEditForm.LoadFromStream(AStream: TStream);
|
||||
ChmItem := Items.Item[I];
|
||||
TreeNode := TChmTreeNode(SitemapTree.Items.AddChild(ParentItem, ChmItem.Text));
|
||||
TreeNode.Local := ChmItem.Local;
|
||||
TreeNode.URL := ChmItem.SubItem[0].URL;
|
||||
if ChmItem.SubItemCount > 0 then
|
||||
TreeNode.URL := ChmItem.SubItem[0].URL;
|
||||
AddItems(ChmItem.Children, TreeNode);
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user