|
@@ -900,7 +900,7 @@ end;
|
|
|
|
|
|
function TFPGList.GetList: PTypeList;
|
|
|
begin
|
|
|
- Result := PTypeList(FList);
|
|
|
+ Result := PTypeList(@FList);
|
|
|
end;
|
|
|
|
|
|
function TFPGList.ItemPtrCompare(Item1, Item2: Pointer): Integer;
|
|
@@ -1035,7 +1035,7 @@ end;
|
|
|
|
|
|
function TFPGObjectList.GetList: PTypeList;
|
|
|
begin
|
|
|
- Result := PTypeList(FList);
|
|
|
+ Result := PTypeList(@FList);
|
|
|
end;
|
|
|
|
|
|
function TFPGObjectList.ItemPtrCompare(Item1, Item2: Pointer): Integer;
|
|
@@ -1165,7 +1165,7 @@ end;
|
|
|
|
|
|
function TFPGInterfacedObjectList.GetList: PTypeList;
|
|
|
begin
|
|
|
- Result := PTypeList(FList);
|
|
|
+ Result := PTypeList(@FList);
|
|
|
end;
|
|
|
|
|
|
function TFPGInterfacedObjectList.ItemPtrCompare(Item1, Item2: Pointer): Integer;
|