mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-22 15:39:33 +02:00
AJ: disable TFloatPoint := TPoint if FPC 1.0
git-svn-id: trunk@3562 -
This commit is contained in:
parent
64182d6814
commit
9da629f572
@ -125,7 +125,10 @@ Operator = (Compare1, Compare2 : TPoint) : Boolean;
|
|||||||
Operator = (Compare1, Compare2 : TFloatPoint) : Boolean;
|
Operator = (Compare1, Compare2 : TFloatPoint) : Boolean;
|
||||||
|
|
||||||
Operator := (Value : TFloatPoint) : TPoint;
|
Operator := (Value : TFloatPoint) : TPoint;
|
||||||
|
|
||||||
|
{$IfNdef ver1_0}
|
||||||
Operator := (Value : TPoint) : TFloatPoint;
|
Operator := (Value : TPoint) : TFloatPoint;
|
||||||
|
{$EndIf}
|
||||||
|
|
||||||
Operator = (Compare1, Compare2 : TRect) : Boolean;
|
Operator = (Compare1, Compare2 : TRect) : Boolean;
|
||||||
|
|
||||||
@ -281,6 +284,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$IfNdef ver1_0}
|
||||||
Operator := (Value : TPoint) : TFloatPoint;
|
Operator := (Value : TPoint) : TFloatPoint;
|
||||||
begin
|
begin
|
||||||
With Result do begin
|
With Result do begin
|
||||||
@ -288,6 +292,7 @@ begin
|
|||||||
Y := Value.Y;
|
Y := Value.Y;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
{$EndIf}
|
||||||
|
|
||||||
Operator = (Compare1, Compare2 : TRect) : Boolean;
|
Operator = (Compare1, Compare2 : TRect) : Boolean;
|
||||||
begin
|
begin
|
||||||
@ -1080,6 +1085,9 @@ end.
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.9 2002/10/25 17:49:43 lazarus
|
||||||
|
AJ: disable TFloatPoint := TPoint if FPC 1.0
|
||||||
|
|
||||||
Revision 1.8 2002/10/18 16:08:09 lazarus
|
Revision 1.8 2002/10/18 16:08:09 lazarus
|
||||||
AJ: Partial HintWindow Fix; Added Screen.Font & Font.Name PropEditor; Started to fix ComboBox DropDown size/pos
|
AJ: Partial HintWindow Fix; Added Screen.Font & Font.Name PropEditor; Started to fix ComboBox DropDown size/pos
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user