]> git.sesse.net Git - vlc/commitdiff
modules/gui/qt4: More compilation attempt.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 13 Aug 2007 19:59:27 +0000 (19:59 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 13 Aug 2007 19:59:27 +0000 (19:59 +0000)
modules/gui/qt4/components/infopanels.cpp

index 3b27a5c4333c446b7b535d6dbdab20f1f7c925ac..f0284dab1bb13da82d1c74e4da6439f95d82b7cd 100644 (file)
@@ -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 ) );