mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:59:31 +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;
|
||||
inc(DstIndex);
|
||||
end;
|
||||
while DstIndex<=Dest.Count do begin
|
||||
while Dest.Count>DstIndex do begin
|
||||
Result:=true;
|
||||
Dest.Delete(Dest.Count);
|
||||
Dest.Delete(Dest.Count-1);
|
||||
end;
|
||||
end;
|
||||
|
||||
@ -896,7 +896,6 @@ end;
|
||||
|
||||
procedure TMyFPCKeywordHelpDatabase.SetKeywordToText(AValue: TStrings);
|
||||
begin
|
||||
debugln(['TMyFPCKeywordHelpDatabase.SetKeywordToText ']);
|
||||
if AssignTrimmedStrings(AValue,FKeywordToText) then
|
||||
Modified:=true;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user