mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
5b950f5d0e
commit
53fb05e44e
3 changed files with 5 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#define STRICT_OPENSTEP 1
|
||||
#include <Foundation/Foundation.h>
|
||||
|
||||
id myServer;
|
||||
|
|
Loading…
Reference in a new issue