Commit b2fc1b73 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

modules/gui/qt4: More compilation attempt.

parent c47fbbed
...@@ -295,8 +295,8 @@ void ExtraMetaPanel::update( input_item_t *p_item ) ...@@ -295,8 +295,8 @@ void ExtraMetaPanel::update( input_item_t *p_item )
char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict ); char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict );
for (int i = 0; ppsz_allkey[i] ; i++ ) for (int i = 0; ppsz_allkey[i] ; i++ )
{ {
const char * psz_value = const char * psz_value = (const char *)vlc_dictionary_value_for_key(
vlc_dictionary_value_for_key( p_dict, ppsz_allkey[i] ); p_dict, ppsz_allkey[i] );
tempItem.append( qfu( ppsz_allkey[i] ) + " : "); tempItem.append( qfu( ppsz_allkey[i] ) + " : ");
tempItem.append( qfu( psz_value ) ); tempItem.append( qfu( psz_value ) );
items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) ); items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) );
......
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