comparison src/audacious/playlist.c @ 2504:fcf730269639 trunk

[svn] - convert filename string to utf8 for playlist->title (closes bug #789)
author giacomo
date Mon, 12 Feb 2007 04:34:56 -0800
parents 15a1f5ee4d1c
children 610d85b8a22b
comparison
equal deleted inserted replaced
2503:10692383c103 2504:fcf730269639
344 if (!filename) { 344 if (!filename) {
345 playlist->title = NULL; 345 playlist->title = NULL;
346 return FALSE; 346 return FALSE;
347 } 347 }
348 348
349 playlist->title = g_strdup(filename); 349 playlist->title = filename_to_utf8(filename);
350 return TRUE; 350 return TRUE;
351 } 351 }
352 352
353 static GList * 353 static GList *
354 find_playlist_position_list(Playlist *playlist) 354 find_playlist_position_list(Playlist *playlist)