Changeset 1412
- Timestamp:
- 08/02/04 22:53:49 (4 years ago)
- Files:
-
- WiredClient/trunk/WCConnection.m (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCConnection.m
r1384 r1412 1 /* $Id: WCConnection.m,v 1.2 2 2004/07/28 09:12:58morris Exp $ */1 /* $Id: WCConnection.m,v 1.23 2004/08/02 20:53:49 morris Exp $ */ 2 2 3 3 /* … … 88 88 _serverInfo = [(WCServerInfo *) [WCServerInfo alloc] initWithConnection:self]; 89 89 _transfers = [(WCTransfers *) [WCTransfers alloc] initWithConnection:self]; 90 90 91 91 // --- initiate data controllers 92 92 _error = [(WCError *) [WCError alloc] initWithConnection:self]; … … 156 156 object:NULL]; 157 157 158 // --- we need these in the threads 159 [_console retain]; 160 158 161 // --- start connection 159 162 [NSThread detachNewThreadSelector:@selector(serverThread:) toTarget:self withObject:NULL]; … … 205 208 [_tracker release]; 206 209 210 [_console release]; 211 207 212 [super dealloc]; 208 213 } … … 240 245 241 246 [_timer invalidate]; 242 247 243 248 [self release]; 244 249 } … … 984 989 object:[NSArray arrayWithObjects:self, argument, NULL]]; 985 990 break; 986 991 987 992 default: 988 993 color = [NSColor redColor];
