mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
Fixed spelling.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4489 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1f8eafb6b9
commit
837b4434af
3 changed files with 16 additions and 10 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Mon Jun 28 11:48:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
|
* Source/include/NSConnection.h: Fixed spelling error reported by
|
||||||
|
Olivier.Saut@dptmaths.ens-cachan.fr
|
||||||
|
* Source/NSConnection.m: ditto
|
||||||
|
|
||||||
Sat Jun 26 7:40:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
Sat Jun 26 7:40:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||||
|
|
||||||
* Source/NSRunLoop.m: Fix error in last mod.
|
* Source/NSRunLoop.m: Fix error in last mod.
|
||||||
|
|
|
@ -58,7 +58,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
||||||
{
|
{
|
||||||
@private
|
@private
|
||||||
BOOL is_valid;
|
BOOL is_valid;
|
||||||
BOOL independant_queueing;
|
BOOL independent_queueing;
|
||||||
unsigned reply_depth;
|
unsigned reply_depth;
|
||||||
NSPort *receive_port;
|
NSPort *receive_port;
|
||||||
NSPort *send_port;
|
NSPort *send_port;
|
||||||
|
@ -94,7 +94,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
||||||
- (id) delegate;
|
- (id) delegate;
|
||||||
- (void) enableMultipleThreads;
|
- (void) enableMultipleThreads;
|
||||||
- (BOOL) multipleThreadsEnabled;
|
- (BOOL) multipleThreadsEnabled;
|
||||||
- (BOOL) independantConversationQueueing;
|
- (BOOL) independentConversationQueueing;
|
||||||
- (void) invalidate;
|
- (void) invalidate;
|
||||||
- (BOOL) isValid;
|
- (BOOL) isValid;
|
||||||
- (NSArray *) remoteObjects;
|
- (NSArray *) remoteObjects;
|
||||||
|
@ -106,7 +106,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
||||||
- (id) rootObject;
|
- (id) rootObject;
|
||||||
- (NSDistantObject*) rootProxy;
|
- (NSDistantObject*) rootProxy;
|
||||||
- (void) setDelegate: anObj;
|
- (void) setDelegate: anObj;
|
||||||
- (void) setIndependantConversationQueueing: (BOOL)flag;
|
- (void) setIndependentConversationQueueing: (BOOL)flag;
|
||||||
- (void) setReplyTimeout: (NSTimeInterval)seconds;
|
- (void) setReplyTimeout: (NSTimeInterval)seconds;
|
||||||
- (void) setRequestMode: (NSString*)mode;
|
- (void) setRequestMode: (NSString*)mode;
|
||||||
- (void) setRequestTimeout: (NSTimeInterval)seconds;
|
- (void) setRequestTimeout: (NSTimeInterval)seconds;
|
||||||
|
|
|
@ -412,9 +412,9 @@ static int messages_received_count;
|
||||||
[self notImplemented: _cmd];
|
[self notImplemented: _cmd];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL) independantConversationQueueing
|
- (BOOL) independentConversationQueueing
|
||||||
{
|
{
|
||||||
return independant_queueing;
|
return independent_queueing;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) enableMultipleThreads
|
- (void) enableMultipleThreads
|
||||||
|
@ -598,9 +598,9 @@ static int messages_received_count;
|
||||||
delegate = anObj;
|
delegate = anObj;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) setIndependantConversationQueueing: (BOOL)flag
|
- (void) setIndependentConversationQueueing: (BOOL)flag
|
||||||
{
|
{
|
||||||
independant_queueing = flag;
|
independent_queueing = flag;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) setReplyTimeout: (NSTimeInterval)to
|
- (void) setReplyTimeout: (NSTimeInterval)to
|
||||||
|
@ -982,7 +982,7 @@ static int messages_received_count;
|
||||||
newConn->receive_port_class = default_receive_port_class;
|
newConn->receive_port_class = default_receive_port_class;
|
||||||
newConn->send_port_class = default_send_port_class;
|
newConn->send_port_class = default_send_port_class;
|
||||||
}
|
}
|
||||||
newConn->independant_queueing = NO;
|
newConn->independent_queueing = NO;
|
||||||
newConn->reply_depth = 0;
|
newConn->reply_depth = 0;
|
||||||
newConn->delegate = nil;
|
newConn->delegate = nil;
|
||||||
/*
|
/*
|
||||||
|
@ -1691,8 +1691,8 @@ static int messages_received_count;
|
||||||
If the REPLY_DEPTH is 0, then we aren't in the middle of waiting
|
If the REPLY_DEPTH is 0, then we aren't in the middle of waiting
|
||||||
for a reply, we are waiting for requests---so service it now.
|
for a reply, we are waiting for requests---so service it now.
|
||||||
If REPLY_DEPTH is non-zero, we may still want to service it now
|
If REPLY_DEPTH is non-zero, we may still want to service it now
|
||||||
if independant_queuing is NO. */
|
if independent_queuing is NO. */
|
||||||
if (reply_depth == 0 || independant_queueing == NO)
|
if (reply_depth == 0 || independent_queueing == NO)
|
||||||
{
|
{
|
||||||
[conn _service_forwardForProxy: rmc];
|
[conn _service_forwardForProxy: rmc];
|
||||||
/* Service any requests that were queued while we
|
/* Service any requests that were queued while we
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue