summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-01-22 17:16:46 +0000
committerdynaflash <[email protected]>2008-01-22 17:16:46 +0000
commitff9b9751c6da20e44158347d9a3c7276a99d0a18 (patch)
tree0a29cc7114948448f658d20c46cc7e8dc769832c
parent399727621931b08e2668196b521c57382c829cf8 (diff)
MacGui: Remove one last section of code which generated the old update alert window, duh!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1226 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/Controller.mm14
1 files changed, 0 insertions, 14 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 1651f5cec..62a732781 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -130,20 +130,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
[self openMainWindow:nil];
- if( ( build = hb_check_update( fHandle, &version ) ) > -1 )
- {
- /* Update available - tell the user */
-
- NSBeginInformationalAlertSheet( _( @"Update is available" ),
- _( @"Go get it!" ), _( @"Discard" ), NULL, fWindow, self,
- @selector( updateAlertDone:returnCode:contextInfo: ),
- NULL, NULL, [NSString stringWithFormat:
- _( @"HandBrake %s (build %d) is now available for download." ),
- version, build] );
- return;
-
- }
-
/* Show Browse Sources Window ASAP */
[self performSelectorOnMainThread: @selector(browseSources:)
withObject: NULL waitUntilDone: NO];