From edcb74e6b1f0a181dc3766e4de4d1acfb15fa3f2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Felix=20Paul=20K=C3=BChne?= Date: Tue, 11 Dec 2007 11:25:21 +0000 Subject: [PATCH] compile before you commit --- modules/gui/macosx/intf.m | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m index d9a3442cbe..212350b294 100644 --- a/modules/gui/macosx/intf.m +++ b/modules/gui/macosx/intf.m @@ -393,7 +393,7 @@ static VLCMain *_o_sharedMainInstance = nil; o_embedded_list = [[VLCEmbeddedList alloc] init]; o_interaction_list = [[VLCInteractionList alloc] init]; o_sfilters = nil; - o_update = [[VLCUpdate alloc] init]; + //FIXME o_update = [[VLCUpdate alloc] init]; i_lastShownVolume = -1; @@ -789,8 +789,9 @@ static VLCMain *_o_sharedMainInstance = nil; if ( !nib_update_loaded ) nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self]; - if([o_update shouldCheckForUpdate]) - [NSThread detachNewThreadSelector:@selector(checkForUpdate) toTarget:o_update withObject:NULL]; + // FIXME + //if([o_update shouldCheckForUpdate]) + // [NSThread detachNewThreadSelector:@selector(checkForUpdate) toTarget:o_update withObject:NULL]; /* Handle sleep notification */ [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector:@selector(computerWillSleep:) @@ -1909,12 +1910,12 @@ static VLCMain *_o_sharedMainInstance = nil; } - (IBAction)checkForUpdate:(id)sender -{ +{/* FIXME if( !nib_update_loaded ) nib_update_loaded = [NSBundle loadNibNamed:@"Update" owner:self]; [o_update showUpdateWindow]; -} +*/} - (IBAction)viewHelp:(id)sender { -- 2.39.5