Skip to content

Commit

Permalink
Fixed memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Rauchfuss committed Nov 28, 2009
1 parent bfdcafe commit ac9cd55
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 101 deletions.
79 changes: 0 additions & 79 deletions English.lproj/GeneralPrefPaneView.nib/classes.nib

This file was deleted.

20 changes: 0 additions & 20 deletions English.lproj/GeneralPrefPaneView.nib/info.nib

This file was deleted.

4 changes: 2 additions & 2 deletions Session/TSSTSessionWindowController.m
Expand Up @@ -141,10 +141,10 @@ - (void)awakeFromNib
[pageController setSelectionIndex: [[session valueForKey: @"selection"] intValue]];

[fullscreenProgressBar setHighlightColor: nil];
NSDictionary * fullscreenNumberStyle = [[NSDictionary dictionaryWithObjectsAndKeys:
NSDictionary * fullscreenNumberStyle = [NSDictionary dictionaryWithObjectsAndKeys:
[NSFont fontWithName: @"Lucida Grande" size: 10], NSFontAttributeName,
[NSColor colorWithDeviceWhite: 0.82 alpha: 1], NSForegroundColorAttributeName,
nil] retain];
nil];
[fullscreenProgressBar setNumberStyle: fullscreenNumberStyle];

NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
Expand Down

0 comments on commit ac9cd55

Please sign in to comment.