]> git.sesse.net Git - vlc/commitdiff
Fix images order
authorClément Stenac <zorglub@videolan.org>
Sat, 27 Nov 2004 00:27:05 +0000 (00:27 +0000)
committerClément Stenac <zorglub@videolan.org>
Sat, 27 Nov 2004 00:27:05 +0000 (00:27 +0000)
modules/gui/wxwindows/playlist.cpp

index d4929ed27fbf153f955d083064f82683748aa6ed..484d8b1e4c713127855fa3848c93d7fa05415c8e 100644 (file)
@@ -343,12 +343,15 @@ Playlist::Playlist( intf_thread_t *_p_intf, wxWindow *p_parent ):
 
     /* Create image list */
     wxImageList *p_images = new wxImageList( 16 , 16, TRUE );
+
+    /* FIXME: absolutely needs to be in the right order FIXME */
+    p_images->Add( wxIcon( type_unknown_xpm ) );
     p_images->Add( wxIcon( type_unknown_xpm ) );
-    p_images->Add( wxIcon( type_disc_xpm ) );
     p_images->Add( wxIcon( type_directory_xpm ) );
-    p_images->Add( wxIcon( type_playlist_xpm ) );
-    p_images->Add( wxIcon( type_net_xpm ) );
+    p_images->Add( wxIcon( type_disc_xpm ) );
     p_images->Add( wxIcon( type_card_xpm ) );
+    p_images->Add( wxIcon( type_net_xpm ) );
+    p_images->Add( wxIcon( type_playlist_xpm ) );
     treectrl->AssignImageList( p_images );
 
     treectrl->AddRoot( wxU(_("root" )), -1, -1, NULL );