mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:18:15 +02:00
Converter: Clear old left-over values when saving configuration. (Remove a hack)
git-svn-id: trunk@46868 -
This commit is contained in:
parent
2da65785f9
commit
934571346f
@ -231,8 +231,9 @@ var
|
||||
Node: TAVLTreeNode;
|
||||
Item: PStringToStringTreeItem;
|
||||
SubPath: String;
|
||||
i, j: Integer;
|
||||
i: Integer;
|
||||
begin
|
||||
Config.DeletePath(Path); // Make sure there are no old leftover items.
|
||||
Config.SetDeleteValue(Path+'Count', Tree.Tree.Count, 0);
|
||||
Node:=Tree.Tree.FindLowest;
|
||||
i:=0;
|
||||
@ -244,11 +245,6 @@ begin
|
||||
Node:=Tree.Tree.FindSuccessor(Node);
|
||||
inc(i);
|
||||
end;
|
||||
// Remove leftover items in case the list has become shorter.
|
||||
for j:=i to i+10 do begin
|
||||
SubPath:=Path+'Item'+IntToStr(j)+'/';
|
||||
Config.DeletePath(SubPath);
|
||||
end;
|
||||
end;
|
||||
|
||||
// Load and store configuration in TFuncsAndCategories :
|
||||
|
Loading…
Reference in New Issue
Block a user