Skip to content
Snippets Groups Projects
Commit b2fc1b73 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont
Browse files

modules/gui/qt4: More compilation attempt.

parent c47fbbed
No related branches found
No related tags found
Loading
......@@ -295,8 +295,8 @@ void ExtraMetaPanel::update( input_item_t *p_item )
char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict );
for (int i = 0; ppsz_allkey[i] ; i++ )
{
const char * psz_value =
vlc_dictionary_value_for_key( p_dict, ppsz_allkey[i] );
const char * psz_value = (const char *)vlc_dictionary_value_for_key(
p_dict, ppsz_allkey[i] );
tempItem.append( qfu( ppsz_allkey[i] ) + " : ");
tempItem.append( qfu( psz_value ) );
items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment