mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 22:12:21 +02:00
* fix of 877
This commit is contained in:
parent
7cb441eadb
commit
48174a41fe
@ -29,7 +29,7 @@ Const
|
|||||||
function TList.Get(Index: Integer): Pointer;
|
function TList.Get(Index: Integer): Pointer;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
If (Index<0) or (Index>FCount) then
|
If (Index<0) or (Index>=FCount) then
|
||||||
Error(SListIndexError,Index);
|
Error(SListIndexError,Index);
|
||||||
Result:=FList^[Index];
|
Result:=FList^[Index];
|
||||||
end;
|
end;
|
||||||
@ -395,7 +395,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.10 2000-01-07 01:24:33 peter
|
Revision 1.11 2000-03-20 14:30:03 pierre
|
||||||
|
* fix of 877
|
||||||
|
|
||||||
|
Revision 1.10 2000/01/07 01:24:33 peter
|
||||||
* updated copyright to 2000
|
* updated copyright to 2000
|
||||||
|
|
||||||
Revision 1.9 2000/01/06 01:20:33 peter
|
Revision 1.9 2000/01/06 01:20:33 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user