NSConnection bugfix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16358 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-04-04 14:15:30 +00:00
parent 5b950f5d0e
commit 53fb05e44e
3 changed files with 5 additions and 0 deletions

View file

@ -4,6 +4,9 @@
* Source/NSInvocation.m: Support the two new macros. Documented.
* Testing/nsinvocation.m: Trivial tests added.
* Documentation/OpenStepCompliance.gsdoc: Updated.
* Source/NSConnection.m: ([-forwardInvocation:forProxy:]) set
invocation target explicitly, in case this was called as a result
of a manual setup of the invocation rather than real forwarding.
2003-04-03 Adam Fedor <fedor@gnu.org>

View file

@ -1959,6 +1959,7 @@ static void retEncoder (DOContext *ctxt)
if (debug_connection > 4)
NSLog(@"building packet seq %d", ctxt.seq);
[inv setTarget: object];
outParams = [inv encodeWithDistantCoder: op passPointers: NO];
if (outParams == YES)

View file

@ -1,3 +1,4 @@
#define STRICT_OPENSTEP 1
#include <Foundation/Foundation.h>
id myServer;