|
@@ -374,7 +374,7 @@
|
|
|
type
|
|
|
tmethodnamerec = packed record
|
|
|
name : pshortstring;
|
|
|
- addr : pointer;
|
|
|
+ addr : codepointer;
|
|
|
end;
|
|
|
|
|
|
tmethodnametable = packed record
|
|
@@ -384,7 +384,7 @@
|
|
|
|
|
|
pmethodnametable = ^tmethodnametable;
|
|
|
|
|
|
- class function TObject.MethodAddress(const name : shortstring) : pointer;
|
|
|
+ class function TObject.MethodAddress(const name : shortstring) : codepointer;
|
|
|
|
|
|
var
|
|
|
methodtable : pmethodnametable;
|
|
@@ -411,7 +411,7 @@
|
|
|
end;
|
|
|
|
|
|
|
|
|
- class function TObject.MethodName(address : pointer) : shortstring;
|
|
|
+ class function TObject.MethodName(address : codepointer) : shortstring;
|
|
|
var
|
|
|
methodtable : pmethodnametable;
|
|
|
i : dword;
|