Commit 59783ce0 authored by Olivier Teulière's avatar Olivier Teulière

* skins2/vars/playlist.cpp: compilation fix

parent 3cc8c40d
......@@ -96,7 +96,8 @@ void Playlist::buildList()
for( int i = 0; i < m_pPlaylist->i_size; i++ )
{
// Get the name of the playlist item
UString *pName = m_pPlaylist->pp_items[i]->input.psz_name;
UString *pName =
new UString( getIntf(), m_pPlaylist->pp_items[i]->input.psz_name );
// Is it the played stream ?
bool playing = (i == m_pPlaylist->i_index );
// Add the item in the list
......@@ -105,9 +106,3 @@ void Playlist::buildList()
vlc_mutex_unlock( &m_pPlaylist->object_lock );
}
UString *Playlist::convertName( const char *pName )
{
return new UString( getIntf(), pName );
}
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