Hello

ATSynEdit has such function
procedure TATSynRanges.DeleteFromLineIndexer(AIndex: integer);
var
  Ptr: PATSynRange;
  NItemLen, iLine, iItem, j: integer;
begin
  Ptr:= ItemPtr(AIndex);
  for iLine:= Ptr^.Y2 downto Ptr^.Y do
  begin
    ..
  end;
end;

when I do "Rename identifier" from Ptr to ItemPtr, IDE allows to do it,
and I have conflict with class method ItemPtr(), which is even called in this function.

--
Regards,
Alexey Torgashin

--
_______________________________________________
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus

Reply via email to