# HG changeset patch # User giacomo # Date 1169134327 28800 # Node ID 424bc51df918db5762337b937b9ea2b7b0e5a18b # Parent f24ae4f40e292ca901b7e5a1d002dfc009fc666c [svn] - ensure that year/tracknumber/length fields are cleared if necessary diff -r f24ae4f40e29 -r 424bc51df918 ChangeLog --- a/ChangeLog Thu Jan 18 03:02:55 2007 -0800 +++ b/ChangeLog Thu Jan 18 07:32:07 2007 -0800 @@ -1,3 +1,14 @@ +2007-01-18 11:02:55 +0000 William Pitcock + revision [3732] + - security and warning fixes from ssommer@suse + + trunk/src/audacious/controlsocket.c | 9 ++++++++- + trunk/src/audacious/util.c | 7 ++++++- + trunk/src/audacious/widgets/playlist_list.c | 2 +- + trunk/src/libaudacious/beepctrl.c | 9 ++++++++- + 4 files changed, 23 insertions(+), 4 deletions(-) + + 2007-01-18 09:46:30 +0000 William Pitcock revision [3730] - Add GenericName and remove icon filename extension from .desktop file. diff -r f24ae4f40e29 -r 424bc51df918 src/audacious/ui_fileinfopopup.c --- a/src/audacious/ui_fileinfopopup.c Thu Jan 18 03:02:55 2007 -0800 +++ b/src/audacious/ui_fileinfopopup.c Thu Jan 18 07:32:07 2007 -0800 @@ -529,14 +529,19 @@ } else { + filepopup_entry_set_text(filepopup_win, "label_tracklen", ""); g_object_set_data( G_OBJECT(filepopup_win), "length" , GINT_TO_POINTER(-1) ); } if (tuple->year != 0) filepopup_entry_set_text_free(filepopup_win, "label_year", g_strdup_printf("%d", tuple->year)); + else + filepopup_entry_set_text(filepopup_win, "label_year", ""); if (tuple->track_number != 0) filepopup_entry_set_text_free(filepopup_win, "label_tracknum", g_strdup_printf("%d", tuple->track_number)); + else + filepopup_entry_set_text(filepopup_win, "label_tracknum", ""); tmp = fileinfo_recursive_get_image(tuple->file_path, tuple->file_name, 0); if (tmp) { // picture found