mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 05:39:17 +02:00
examples: idehelp: fixed saving options
git-svn-id: trunk@35156 -
This commit is contained in:
parent
829064a1d5
commit
25ceea4ece
@ -368,9 +368,9 @@ begin
|
|||||||
end;
|
end;
|
||||||
inc(DstIndex);
|
inc(DstIndex);
|
||||||
end;
|
end;
|
||||||
while DstIndex<=Dest.Count do begin
|
while Dest.Count>DstIndex do begin
|
||||||
Result:=true;
|
Result:=true;
|
||||||
Dest.Delete(Dest.Count);
|
Dest.Delete(Dest.Count-1);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -896,7 +896,6 @@ end;
|
|||||||
|
|
||||||
procedure TMyFPCKeywordHelpDatabase.SetKeywordToText(AValue: TStrings);
|
procedure TMyFPCKeywordHelpDatabase.SetKeywordToText(AValue: TStrings);
|
||||||
begin
|
begin
|
||||||
debugln(['TMyFPCKeywordHelpDatabase.SetKeywordToText ']);
|
|
||||||
if AssignTrimmedStrings(AValue,FKeywordToText) then
|
if AssignTrimmedStrings(AValue,FKeywordToText) then
|
||||||
Modified:=true;
|
Modified:=true;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user