]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/intf.m
* Apply changed made to the 0.8.5 branch to trunk.
[vlc] / modules / gui / macosx / intf.m
index 1c67bcac7d8a6adbf34015132a06c5fa815cc2fa..efdc68495f1c73916e79f921551c928f5f256399 100644 (file)
@@ -304,6 +304,7 @@ static VLCMain *_o_sharedMainInstance = nil;
     o_wizard = [[VLCWizard alloc] init];
     o_extended = nil;
     o_bookmarks = [[VLCBookmarks alloc] init];
+    o_embedded_list = [[VLCEmbeddedList alloc] init];
     o_sfilters = nil;
     /*o_update = [[VLCUpdate alloc] init];*/
 
@@ -804,6 +805,15 @@ static VLCMain *_o_sharedMainInstance = nil;
     return nil;
 }
 
+- (id)getEmbeddedList
+{
+    if( o_embedded_list )
+    {
+        return o_embedded_list;
+    }
+    return nil;
+}
+
 - (void)manage
 {
     playlist_t * p_playlist;