vlc | branch: master | Felix Paul Kühne <[email protected]> | Tue Sep 4 12:51:20 2012 +0200| [f9b872ba9e7889e975c3f29c50868389e040bcc0] | committer: Felix Paul Kühne
macosx: removed dead code > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f9b872ba9e7889e975c3f29c50868389e040bcc0 --- modules/gui/macosx/intf.h | 5 +---- modules/gui/macosx/intf.m | 10 ---------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/modules/gui/macosx/intf.h b/modules/gui/macosx/intf.h index 30aef0d..43fe3f9 100644 --- a/modules/gui/macosx/intf.h +++ b/modules/gui/macosx/intf.h @@ -85,7 +85,6 @@ struct intf_sys_t id o_sprefs; /* VLCSimplePrefs */ id o_open; /* VLCOpen */ id o_wizard; /* VLCWizard */ - id o_embedded_list; /* VLCEmbeddedList*/ id o_coredialogs; /* VLCCoreDialogProvider */ id o_info; /* VLCInformation */ id o_eyetv; /* VLCEyeTVController */ @@ -158,7 +157,6 @@ struct intf_sys_t - (id)playlist; - (id)info; - (id)wizard; -- (id)embeddedList; - (id)getVideoViewAtPositionX: (int *)pi_x Y: (int *)pi_y withWidth: (unsigned int*)pi_width andHeight: (unsigned int*)pi_height; - (void)setNativeVideoSize:(NSSize)size; - (id)coreDialogProvider; @@ -214,6 +212,5 @@ struct intf_sys_t *****************************************************************************/ @interface VLCApplication : NSApplication -{ -} + @end diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m index 86edffd..304f369 100644 --- a/modules/gui/macosx/intf.m +++ b/modules/gui/macosx/intf.m @@ -524,7 +524,6 @@ static VLCMain *_o_sharedMainInstance = nil; o_msg_arr = [[NSMutableArray arrayWithCapacity: 600] retain]; o_open = [[VLCOpen alloc] init]; - //o_embedded_list = [[VLCEmbeddedList alloc] init]; o_coredialogs = [[VLCCoreDialogProvider alloc] init]; o_info = [[VLCInfo alloc] init]; o_mainmenu = [[VLCMainMenu alloc] init]; @@ -793,7 +792,6 @@ static VLCMain *_o_sharedMainInstance = nil; [crashLogURLConnection cancel]; [crashLogURLConnection release]; - [o_embedded_list release]; [o_coredialogs release]; [o_eyetv release]; @@ -1509,14 +1507,6 @@ static VLCMain *_o_sharedMainInstance = nil; return videoView; } -- (id)embeddedList -{ - if (o_embedded_list) - return o_embedded_list; - - return nil; -} - - (id)coreDialogProvider { if (o_coredialogs) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
