summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/Controller.m')
-rw-r--r--macosx/Controller.m15
1 files changed, 0 insertions, 15 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m
index ac7afee32..507fb0113 100644
--- a/macosx/Controller.m
+++ b/macosx/Controller.m
@@ -56,11 +56,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
return nil;
}
- fApplicationIcon = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"HandBrake.icns"]];
-
- if( fApplicationIcon != nil )
- [NSApp setApplicationIconImage:fApplicationIcon];
-
[HBPreferencesController registerUserDefaults];
fHandle = NULL;
fQueueEncodeLibhb = NULL;
@@ -552,7 +547,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
[fQueueController release];
[fPreviewController release];
[fPictureController release];
- [fApplicationIcon release];
hb_close(&fHandle);
hb_close(&fQueueEncodeLibhb);
@@ -1748,15 +1742,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
}
}
-- (IBAction)showAboutPanel:(id)sender
-{
- NSMutableDictionary* d = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
- fApplicationIcon, @"ApplicationIcon",
- nil ];
- [NSApp orderFrontStandardAboutPanelWithOptions:d];
- [d release];
-}
-
/* Here we open the title selection sheet where we can specify an exact title to be scanned */
- (IBAction) showSourceTitleScanPanel: (id) sender
{