]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/dialogs/playlist.cpp
Add CDDB support to CDDA module (Refs:#459)
[vlc] / modules / gui / wxwidgets / dialogs / playlist.cpp
index 85d408924ee37a523ae16d1f1d5c4904ea3dce08..9f4cfa00c37025a57ff8a8efd2dcd2c4584a0a92 100644 (file)
@@ -47,6 +47,8 @@
 #include <wx/dynarray.h>
 #include <wx/imaglist.h>
 
+#include <vlc_meta.h>
+
 #define HELP_SHUFFLE N_( "Shuffle" )
 #define HELP_LOOP N_( "Repeat All" )
 #define HELP_REPEAT N_( "Repeat One" )
@@ -493,7 +495,7 @@ void Playlist::UpdateTreeItem( wxTreeItemId item )
     wxString duration = wxU( "" );
     char *psz_author = vlc_input_item_GetInfo( &p_item->input,
                                                      _("Meta-information"),
-                                                     _("Artist"));
+                                                     VLC_META_ARTIST );
     if( !psz_author )
     {
         UnlockPlaylist( p_intf->p_sys, p_playlist );