Example with error (from TMS, AdvMemo:
procedure TAdvCustomMemo.UndoChange;
begin
if Assigned(FOnUndoChange) then
FOnUndoChange(Self, InternalUndoList.Pos < InternalUndoList.Count,
InternalUndoList.Pos > 0);
end;
Says that ")" is not required here (exception)
Example with error (from TMS, AdvMemo:
procedure TAdvCustomMemo.UndoChange;
begin
if Assigned(FOnUndoChange) then
FOnUndoChange(Self, InternalUndoList.Pos < InternalUndoList.Count,
InternalUndoList.Pos > 0);
end;
Says that ")" is not required here (exception)