mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
* fixed result of NSObject(Protocol).hash: cuint -> NSUInteger (fixes 64 bit
compilation of cocoain) git-svn-id: trunk@16692 -
This commit is contained in:
parent
f5d9ab3038
commit
6fe0084caa
@ -83,7 +83,7 @@ type
|
||||
|
||||
NSObjectProtocol = objcprotocol external name 'NSObject'
|
||||
function isEqual(obj: id): boolean; message 'isEqual:';
|
||||
function hash: cuint; message 'hash';
|
||||
function hash: NSUInteger; message 'hash';
|
||||
|
||||
function superclass: pobjc_class; message 'superclass';
|
||||
function _class: pobjc_class; message 'class';
|
||||
@ -122,7 +122,7 @@ type
|
||||
definition by the compiler, but you can still repeat them if you want }
|
||||
function isEqual(obj: id): boolean;
|
||||
function isEqual_(obj: id): boolean; message 'isEqual:';
|
||||
function hash: cuint;
|
||||
function hash: NSUInteger;
|
||||
|
||||
function superclass: pobjc_class;
|
||||
function _class: pobjc_class;
|
||||
|
Loading…
Reference in New Issue
Block a user