Changeset 3794 for trunk/Controllers
- Timestamp:
- 07/18/08 17:42:24 (4 months ago)
- Files:
-
- trunk/Controllers/MVBuddyListController.m (modified) (1 diff)
- trunk/Controllers/MVConnectionsController.m (modified) (2 diffs)
- trunk/Controllers/MVCrashCatcher.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Controllers/MVBuddyListController.m
r3607 r3794 331 331 332 332 [buddy addWatchRule:rule]; 333 [rule release]; 333 334 334 335 [self addBuddy:buddy]; 336 [buddy release]; 337 335 338 [self save]; 336 339 trunk/Controllers/MVConnectionsController.m
r3763 r3794 37 37 #pragma mark - 38 38 39 @interface NSDisclosureButtonCell 39 @interface NSDisclosureButtonCell : NSCell 40 40 + (id) alloc; 41 41 - (id) initWithCell:(NSCell *) cell; … … 214 214 [toolbar setAutosavesConfiguration:YES]; 215 215 [[self window] setToolbar:toolbar]; 216 217 [showDetails setCell:[[NSDisclosureButtonCell alloc] initWithCell:[showDetails cell]]]; 216 217 NSDisclosureButtonCell *cell = [[NSDisclosureButtonCell alloc] initWithCell:[showDetails cell]]; 218 [showDetails setCell:cell]; 219 [cell release]; 218 220 219 221 [self setWindowFrameAutosaveName:@"Connections"]; trunk/Controllers/MVCrashCatcher.m
r3763 r3794 6 6 if( [[NSBundle bundleWithIdentifier:@"com.unsanity.smartcrashreports"] isLoaded] ) 7 7 return; // user has Unsanity Smart Crash Reports installed, don't use our own reporter 8 [[MVCrashCatcher alloc] init]; 8 [[MVCrashCatcher alloc] init]; // Released when the window is closed. 9 9 } 10 10
