]> git.sesse.net Git - vlc/commitdiff
* wxwindows/playlist.cpp: Menu and toolbar are no longer dockable
authorYoann Peronneau <yoann@videolan.org>
Sun, 23 Jan 2005 20:58:48 +0000 (20:58 +0000)
committerYoann Peronneau <yoann@videolan.org>
Sun, 23 Jan 2005 20:58:48 +0000 (20:58 +0000)
modules/gui/wxwindows/playlist.cpp

index 63f09b55a3a53a76308d78549a55f29ca5a88f0d..82ffded19187c473821edcfdad494d9b59617f56 100644 (file)
@@ -253,7 +253,7 @@ Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
     ViewMenu();
 
     /* Append the freshly created menus to the menu bar */
-    wxMenuBar *menubar = new wxMenuBar( wxMB_DOCKABLE );
+    wxMenuBar *menubar = new wxMenuBar();
     menubar->Append( manage_menu, wxU(_("&Manage")) );
     menubar->Append( sort_menu, wxU(_("S&ort")) );
     menubar->Append( selection_menu, wxU(_("&Selection")) );
@@ -283,7 +283,7 @@ Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
 
     /* Create the toolbar */
     wxToolBar *toolbar =
-        CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
+        CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT );
 
     /* Create the random tool */
     toolbar->AddTool( Random_Event, wxT(""), wxBitmap(shuffle_on_xpm),