mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-27 06:30:01 +02:00
* Added missing brackets in r12266
git-svn-id: trunk@12276 -
This commit is contained in:
parent
aa38b10011
commit
55c866f9d3
@ -1841,7 +1841,8 @@ begin
|
||||
while (r < Length(FUpdateBuffer)) and (Response <> rrAbort) do
|
||||
begin
|
||||
// If the record is first inserted and afterwards deleted, do nothing
|
||||
if not (FUpdateBuffer[r].UpdateKind=ukDelete) and not (assigned(FUpdateBuffer[r].OldValuesBuffer)) then
|
||||
if not ((FUpdateBuffer[r].UpdateKind=ukDelete) and not (assigned(FUpdateBuffer[r].OldValuesBuffer))) then
|
||||
if not (FUpdateBuffer[r].UpdateKind=ukDelete) then
|
||||
begin
|
||||
FCurrentIndex.GotoBookmark(@FUpdateBuffer[r].BookmarkData);
|
||||
// Joost: I do not see the use of this resync?
|
||||
|
Loading…
Reference in New Issue
Block a user