You've already forked lazarus-ccr
RxFPC: fix compile with FPC 2.6.4
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4330 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -1056,7 +1056,7 @@ begin
|
|||||||
|
|
||||||
DataSet.DisableControls;
|
DataSet.DisableControls;
|
||||||
Result.BeginUpdate;
|
Result.BeginUpdate;
|
||||||
P:=DataSet.Bookmark;
|
P:=DataSet.GetBookmark;
|
||||||
try
|
try
|
||||||
DataSet.First;
|
DataSet.First;
|
||||||
while not DataSet.EOF do
|
while not DataSet.EOF do
|
||||||
@ -1066,7 +1066,8 @@ begin
|
|||||||
DataSet.Next;
|
DataSet.Next;
|
||||||
end;
|
end;
|
||||||
finally
|
finally
|
||||||
DataSet.Bookmark:=P;
|
DataSet.GotoBookmark(P);
|
||||||
|
DataSet.FreeBookmark(P);
|
||||||
Result.EndUpdate;
|
Result.EndUpdate;
|
||||||
DataSet.EnableControls;
|
DataSet.EnableControls;
|
||||||
end;
|
end;
|
||||||
|
Reference in New Issue
Block a user