* 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:
Jonas Maebe 2009-07-26 14:06:34 +00:00
parent f17943371c
commit 464d595cc6
3 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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.

View File

@ -7,5 +7,5 @@
var
a: sel;
begin
a:=selector('my:method');
a:=objcselector('my:method');
end.