Changeset 1315
- Timestamp:
- 05/23/04 05:14:22 (5 years ago)
- Files:
-
- WiredClient/trunk/NSTextFieldCellAdditions.m (modified) (3 diffs)
- WiredClient/trunk/WCConnection.m (modified) (2 diffs)
- WiredClient/trunk/WCSecureSocket.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/NSTextFieldCellAdditions.m
r1167 r1315 1 /* $Id: NSTextFieldCellAdditions.m,v 1. 3 2004/05/16 03:29:09morris Exp $ */1 /* $Id: NSTextFieldCellAdditions.m,v 1.4 2004/05/23 03:14:22 morris Exp $ */ 2 2 3 3 /* … … 49 49 style, NSParagraphStyleAttributeName, 50 50 NULL]; 51 [style release]; 51 52 52 53 // --- add extra attributes … … 58 59 [self setAttributedStringValue:attributed]; 59 60 [attributed release]; 60 61 [style release];62 61 } 63 62 WiredClient/trunk/WCConnection.m
r1302 r1315 1 /* $Id: WCConnection.m,v 1.1 2 2004/05/22 08:06:59morris Exp $ */1 /* $Id: WCConnection.m,v 1.13 2004/05/23 03:14:22 morris Exp $ */ 2 2 3 3 /* … … 853 853 // --- log to console 854 854 [_console print:[NSString stringWithFormat:@"%d %@\n", message, argument] color:color]; 855 [string release]; 855 856 } 856 857 WiredClient/trunk/WCSecureSocket.m
r1298 r1315 1 /* $Id: WCSecureSocket.m,v 1. 8 2004/05/22 02:18:09morris Exp $ */1 /* $Id: WCSecureSocket.m,v 1.9 2004/05/23 03:14:22 morris Exp $ */ 2 2 3 3 /* … … 130 130 131 131 - (void)readInBackgroundAndNotify { 132 NSAutoreleasePool *pool; 132 133 NSData *data; 133 134 struct timeval tv; … … 190 191 buffer[buffer_offset + bytes - 1] = '\0'; 191 192 192 // --- create data 193 data = [NSData dataWithBytes:buffer length:buffer_offset + bytes]; 194 195 // --- announce 193 // --- announce data 194 pool = [[NSAutoreleasePool alloc] init]; 195 data = [[NSData alloc] initWithBytes:buffer length:buffer_offset + bytes]; 196 196 [_connection receiveData:data]; 197 [data release]; 198 [pool release]; 197 199 198 200 // --- reset
