]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/playlist_manager.cpp
[patch] unifying meta-information access, the 2nd by Daniel Stränger
[vlc] / modules / gui / wxwidgets / playlist_manager.cpp
index a3ead143e89f633b0c21c293db37c6277d344212..8a54e9a0c2e276d1f92c2927c912bcfe5f2e54f4 100644 (file)
@@ -42,6 +42,7 @@
 
 #include <wx/dynarray.h>
 #include <wx/imaglist.h>
+#include "vlc_meta.h"
 
 namespace wxvlc {
 /* Callback prototype */
@@ -291,7 +292,7 @@ void PlaylistManager::UpdateTreeItem( wxTreeItemId item )
     wxString duration = wxU( "" );
     char *psz_author =
         vlc_input_item_GetInfo( &p_item->input,
-                                _("Meta-information"), _("Artist"));
+                                _(VLC_META_INFO_CAT), _(VLC_META_ARTIST) );
     if( !psz_author )
     {
         UnlockPlaylist( p_intf->p_sys, p_playlist );