mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
* Headers/Foundation/NSMethodSignature.h:
(NSArgumentInfo): Document limitations of NSArgumentInfo's offset and registier information. Match size for NO_GNUSTEP. (NSMethodSignature): Match ivar name with runtime information. * Source/GSFFCallInvocation.m * Source/GSFFIInvocation.m * Source/NSInvocation.m (gs_method_for_receiver_and_selector) ([-invokeWithTarget:]): Use GSGetMethod instead of deprecated GSGetInstanceMethod and GSGetClassMethod. * Source/NSConnection.m ([-_service_typeForSelector]): Ditto. * Source/NSDistantObject.m ([+respondsToSelector]): Ditto. * Source/NSObject.m ([+instanceMethodSignatureForSelector:]) ([-methodSignatureForSelector:]) ([+descriptionForInstanceMethod], [-descriptionForMethod]): Ditto. * Source/NSProtocolChecker.m ([-methodSignatureForSelector]): Ditto. * Source/NSProxy.m ([+methodSignatureForSelector]) ([-methodSignatureForSelector]): Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19896 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b75f25ec18
commit
8cd30609bf
10 changed files with 78 additions and 53 deletions
|
@ -2585,7 +2585,7 @@ static void callEncoder (DOContext *ctxt)
|
|||
|
||||
/* xxx We should make sure that TARGET is a valid object. */
|
||||
/* Not actually a Proxy, but we avoid the warnings "id" would have made. */
|
||||
m = GSGetInstanceMethod(((NSDistantObject*)o)->isa, sel);
|
||||
m = GSGetMethod(((NSDistantObject*)o)->isa, sel, YES, YES);
|
||||
/* Perhaps I need to be more careful in the line above to get the
|
||||
version of the method types that has the type qualifiers in it.
|
||||
Search the protocols list. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue