mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-21 16:23:32 +02:00
* renamed NSObject.*copyWithZone to NSObject.class*CopyWithZone to prevent
identifier conflicts with the instance methods added by NSCopyingProtocol git-svn-id: trunk@16881 -
This commit is contained in:
parent
3140d1d7e7
commit
d65839d51a
@ -185,10 +185,10 @@ type
|
||||
function copy: id; message 'copy';
|
||||
function mutableCopy: id; message 'mutableCopy';
|
||||
|
||||
class function copyWithZone(_zone: NSZonePtr): id; message 'copyWithZone:';
|
||||
class function copyWithZone_(_zone: NSZonePtr): id; message 'copyWithZone:';
|
||||
class function mutableCopyWithZone(_zone: NSZonePtr): id; message 'mutableCopyWithZone:';
|
||||
class function mutableCopyWithZone_(_zone: NSZonePtr): id; message 'mutableCopyWithZone:';
|
||||
class function classCopyWithZone(_zone: NSZonePtr): id; message 'copyWithZone:';
|
||||
class function classCopyWithZone_(_zone: NSZonePtr): id; message 'copyWithZone:';
|
||||
class function classMutableCopyWithZone(_zone: NSZonePtr): id; message 'mutableCopyWithZone:';
|
||||
class function classMutableCopyWithZone_(_zone: NSZonePtr): id; message 'mutableCopyWithZone:';
|
||||
|
||||
{ "class" prefix to method name to avoid name collision with NSObjectProtocol }
|
||||
class function classSuperclass: pobjc_class; message 'superclass';
|
||||
|
Loading…
Reference in New Issue
Block a user