Commit b26d4009 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix URI character set in playlist

(We seldom have non ASCII characters here, but better safe than sorry)
parent 2dbaa510
...@@ -468,7 +468,7 @@ QStringList PLModel::selectedURIs() ...@@ -468,7 +468,7 @@ QStringList PLModel::selectedURIs()
char *psz = input_item_GetURI( p_item->p_input ); char *psz = input_item_GetURI( p_item->p_input );
if( psz ) if( psz )
{ {
lst.append( psz ); lst.append( qfu(psz) );
free( psz ); free( psz );
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment