mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 08:00:34 +02:00
lcl: fix TCanvas.DoLine
git-svn-id: trunk@20506 -
This commit is contained in:
parent
d24d8ac07f
commit
cfa6393564
@ -586,7 +586,7 @@ end;
|
|||||||
procedure TCanvas.DoLine(x1, y1, x2, y2: integer);
|
procedure TCanvas.DoLine(x1, y1, x2, y2: integer);
|
||||||
begin
|
begin
|
||||||
MoveTo(x1,y1);
|
MoveTo(x1,y1);
|
||||||
LineTo(x1,y1);
|
LineTo(x2,y2);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TCanvas.DoCopyRect(x, y: integer; SrcCanvas: TFPCustomCanvas;
|
procedure TCanvas.DoCopyRect(x, y: integer; SrcCanvas: TFPCustomCanvas;
|
||||||
|
Loading…
Reference in New Issue
Block a user