Changeset fd195152372e1098821fe05a8217e8d0bdbca04c

Show
Ignore:
Timestamp:
27/11/04 01:27:05 (4 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1101515225 +0000
git-parent:

[1f693518481c2d3e5def2dbd3763178e0e07dd61]

git-author:
Clément Stenac <zorglub@videolan.org> 1101515225 +0000
Message:

Fix images order

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/wxwindows/playlist.cpp

    r2b35331 rfd19515  
    344344    /* Create image list */ 
    345345    wxImageList *p_images = new wxImageList( 16 , 16, TRUE ); 
     346 
     347    /* FIXME: absolutely needs to be in the right order FIXME */ 
    346348    p_images->Add( wxIcon( type_unknown_xpm ) ); 
     349    p_images->Add( wxIcon( type_unknown_xpm ) ); 
     350    p_images->Add( wxIcon( type_directory_xpm ) ); 
    347351    p_images->Add( wxIcon( type_disc_xpm ) ); 
    348     p_images->Add( wxIcon( type_directory_xpm ) ); 
     352    p_images->Add( wxIcon( type_card_xpm ) ); 
     353    p_images->Add( wxIcon( type_net_xpm ) ); 
    349354    p_images->Add( wxIcon( type_playlist_xpm ) ); 
    350     p_images->Add( wxIcon( type_net_xpm ) ); 
    351     p_images->Add( wxIcon( type_card_xpm ) ); 
    352355    treectrl->AssignImageList( p_images ); 
    353356