mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 22:09:28 +02:00
* inline Types.Point(...)
git-svn-id: trunk@18174 -
This commit is contained in:
parent
d8a2c47c75
commit
883eab626d
@ -285,7 +285,7 @@ type
|
||||
function EqualRect(const r1,r2 : TRect) : Boolean;
|
||||
function Rect(Left,Top,Right,Bottom : Integer) : TRect;
|
||||
function Bounds(ALeft,ATop,AWidth,AHeight : Integer) : TRect;
|
||||
function Point(x,y : Integer) : TPoint;
|
||||
function Point(x,y : Integer) : TPoint; inline;
|
||||
function PtInRect(const Rect : TRect; const p : TPoint) : Boolean;
|
||||
function IntersectRect(var Rect : TRect; const R1,R2 : TRect) : Boolean;
|
||||
function UnionRect(var Rect : TRect; const R1,R2 : TRect) : Boolean;
|
||||
@ -326,7 +326,7 @@ begin
|
||||
end;
|
||||
|
||||
|
||||
function Point(x,y : Integer) : TPoint;
|
||||
function Point(x,y : Integer) : TPoint; inline;
|
||||
|
||||
begin
|
||||
Point.x:=x;
|
||||
|
Loading…
Reference in New Issue
Block a user