* fixed class messages for PowerPC64, due to a wrong typecast

git-svn-id: trunk@1363 -
This commit is contained in:
tom_at_work 2005-10-12 22:28:51 +00:00
parent cd3f064a33
commit 0b34b01a6d

View File

@ -413,9 +413,9 @@
begin
// See if we have messages at all in this class.
p:=pointer(vmt)+vmtDynamicTable;
If Assigned(p) and (Pdword(p)^<>0) then
If assigned(PPointer(p)^) then
begin
msgtable:=pmsgtable(PtrInt(p^)+4);
msgtable:=pmsgtable(Pointer(p^)+4);
count:=pdword(p^)^;
end
else