Commit f24ef231 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: PLModel: missing qfu()

parent 23cf6e36
......@@ -466,7 +466,7 @@ QString PLModel::getURI( const QModelIndex &index ) const
input_item_t *p_item = getItem( index )->inputItem();
/* no PL lock as item gets refcount +1 from PLItem, which only depends of events */
vlc_mutex_lock( &p_item->lock );
uri = QString( p_item->psz_uri );
uri = qfu( p_item->psz_uri );
vlc_mutex_unlock( &p_item->lock );
return uri;
}
......
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