Changeset 17f19ed3e9c7ebdd079618b330c05093f526789c

Show
Ignore:
Timestamp:
30/08/07 11:30:03 (1 year ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1188466203 +0000
git-parent:

[ffdcdf8a7d7921fe8a7f30bc1ab18dc47d6949d9]

git-author:
Rafaël Carré <funman@videolan.org> 1188466203 +0000
Message:

Displays playlist names using UTF8

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/playlist_model.cpp

    r16e5180 r17f19ed  
    195195    if( model->i_depth == 1 )  //left window for playlist etc. 
    196196    { 
    197         strings.append( p_item->p_input->psz_name ); 
     197        const QString psz_name = QString::fromUtf8( p_item->p_input->psz_name ); 
     198        strings.append( psz_name ); 
    198199        return; 
    199200    }