From 4f3aa80b4d4df475fc005930c80dc1acebbb5b2e Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Tue, 25 Aug 2009 18:44:29 +0000 Subject: [PATCH] * corrected performSelector_withObject_withObject_ method name (added ending _) git-svn-id: branches/objc@13592 - --- rtl/inc/objcbase.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/inc/objcbase.pp b/rtl/inc/objcbase.pp index 6adc704967..da35169f2e 100644 --- a/rtl/inc/objcbase.pp +++ b/rtl/inc/objcbase.pp @@ -50,7 +50,7 @@ type function performSelector_(aSelector: SEL): id; message 'performSelector:'; function performSelector_withObject_(aSelector: SEL; obj: id): id; message 'performSelector:withObject:'; - function performSelector_withObject_withObject(aSelector: SEL; obj1, obj2: id): id; message 'performSelector:withObject:withObject:'; + function performSelector_withObject_withObject_(aSelector: SEL; obj1, obj2: id): id; message 'performSelector:withObject:withObject:'; function isProxy: boolean; message 'isProxy'; @@ -65,7 +65,7 @@ type function autorelease: id; message 'autorelease'; function retainCount: cint; message 'retainCount'; - function description: {NSString} id; message 'description'; + function description: {NSString} id; message 'description'; end; external name 'NSObject';