mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +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
3e23d9af4b
commit
1e6c609300
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>
|
||||
|
||||
* Source/NSRunLoop.m: Fix error in last mod.
|
||||
|
|
|
@ -58,7 +58,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
|||
{
|
||||
@private
|
||||
BOOL is_valid;
|
||||
BOOL independant_queueing;
|
||||
BOOL independent_queueing;
|
||||
unsigned reply_depth;
|
||||
NSPort *receive_port;
|
||||
NSPort *send_port;
|
||||
|
@ -94,7 +94,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
|||
- (id) delegate;
|
||||
- (void) enableMultipleThreads;
|
||||
- (BOOL) multipleThreadsEnabled;
|
||||
- (BOOL) independantConversationQueueing;
|
||||
- (BOOL) independentConversationQueueing;
|
||||
- (void) invalidate;
|
||||
- (BOOL) isValid;
|
||||
- (NSArray *) remoteObjects;
|
||||
|
@ -106,7 +106,7 @@ extern NSString *NSConnectionProxyCount; /* Objects received */
|
|||
- (id) rootObject;
|
||||
- (NSDistantObject*) rootProxy;
|
||||
- (void) setDelegate: anObj;
|
||||
- (void) setIndependantConversationQueueing: (BOOL)flag;
|
||||
- (void) setIndependentConversationQueueing: (BOOL)flag;
|
||||
- (void) setReplyTimeout: (NSTimeInterval)seconds;
|
||||
- (void) setRequestMode: (NSString*)mode;
|
||||
- (void) setRequestTimeout: (NSTimeInterval)seconds;
|
||||
|
|
|
@ -412,9 +412,9 @@ static int messages_received_count;
|
|||
[self notImplemented: _cmd];
|
||||
}
|
||||
|
||||
- (BOOL) independantConversationQueueing
|
||||
- (BOOL) independentConversationQueueing
|
||||
{
|
||||
return independant_queueing;
|
||||
return independent_queueing;
|
||||
}
|
||||
|
||||
- (void) enableMultipleThreads
|
||||
|
@ -598,9 +598,9 @@ static int messages_received_count;
|
|||
delegate = anObj;
|
||||
}
|
||||
|
||||
- (void) setIndependantConversationQueueing: (BOOL)flag
|
||||
- (void) setIndependentConversationQueueing: (BOOL)flag
|
||||
{
|
||||
independant_queueing = flag;
|
||||
independent_queueing = flag;
|
||||
}
|
||||
|
||||
- (void) setReplyTimeout: (NSTimeInterval)to
|
||||
|
@ -982,7 +982,7 @@ static int messages_received_count;
|
|||
newConn->receive_port_class = default_receive_port_class;
|
||||
newConn->send_port_class = default_send_port_class;
|
||||
}
|
||||
newConn->independant_queueing = NO;
|
||||
newConn->independent_queueing = NO;
|
||||
newConn->reply_depth = 0;
|
||||
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
|
||||
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 independant_queuing is NO. */
|
||||
if (reply_depth == 0 || independant_queueing == NO)
|
||||
if independent_queuing is NO. */
|
||||
if (reply_depth == 0 || independent_queueing == NO)
|
||||
{
|
||||
[conn _service_forwardForProxy: rmc];
|
||||
/* Service any requests that were queued while we
|
||||
|
|
Loading…
Reference in a new issue