Commit f9b872ba authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: removed dead code

parent 1f18696f
......@@ -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
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment