* inline Types.Point(...)

git-svn-id: trunk@18174 -
This commit is contained in:
florian 2011-08-11 20:53:59 +00:00
parent d8a2c47c75
commit 883eab626d

View File

@ -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;