diff audacious/ui_playlist.c @ 1825:8b71a2b0577b trunk

[svn] - results from more profiling
author nenolod
date Thu, 05 Oct 2006 03:26:36 -0700
parents 61f531908dd0
children 886b479afe63
line wrap: on
line diff
--- a/audacious/ui_playlist.c	Thu Oct 05 03:03:56 2006 -0700
+++ b/audacious/ui_playlist.c	Thu Oct 05 03:26:36 2006 -0700
@@ -378,17 +378,9 @@
 {
     gchar *posstr, *timestr, *title, *info;
     gint pos, time;
-    TitleInput *tuple = NULL;
 
     pos = playlist_get_position();
-    tuple = playlist_get_tuple(pos);
-
-    if(tuple){
-        title = xmms_get_titlestring(tuple->formatter ? tuple->formatter : xmms_get_gentitle_format(), tuple);
-    }
-    else {
-        title = playlist_get_songtitle(pos);
-    }
+    title = playlist_get_songtitle(pos);
 
     if (!title) {
         textbox_set_text(playlistwin_sinfo, "");