mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* renamed selector() to objcselector() for consistency with the way all
other Objective-C integration keywords/functions are being named git-svn-id: trunk@13456 -
This commit is contained in:
parent
f17943371c
commit
464d595cc6
@ -102,7 +102,7 @@ implementation
|
||||
{$ifdef SUPPORT_UNALIGNED}
|
||||
systemunit.insert(tsyssym.create('Unaligned',in_unaligned_x));
|
||||
{$endif SUPPORT_UNALIGNED}
|
||||
systemunit.insert(tsyssym.create('Selector',in_objc_selector_x)); { objc only }
|
||||
systemunit.insert(tsyssym.create('ObjCSelector',in_objc_selector_x)); { objc only }
|
||||
end;
|
||||
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
var
|
||||
a: sel;
|
||||
begin
|
||||
a:=selector('mymethod');
|
||||
a:=selector('mymethod');
|
||||
a:=selector('mymethod:');
|
||||
a:=selector('::');
|
||||
a:=selector('a:b:c:');
|
||||
a:=objcselector('mymethod');
|
||||
a:=objcselector('mymethod');
|
||||
a:=objcselector('mymethod:');
|
||||
a:=objcselector('::');
|
||||
a:=objcselector('a:b:c:');
|
||||
end.
|
||||
|
@ -7,5 +7,5 @@
|
||||
var
|
||||
a: sel;
|
||||
begin
|
||||
a:=selector('my:method');
|
||||
a:=objcselector('my:method');
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user