changeset 130:16e2c64d8b2b trunk

[svn] - provide a complete tuple (fixes albumart and such; path was missing.)
author nenolod
date Fri, 27 Oct 2006 11:58:34 -0700
parents dae03298753f
children 561871379579
files ChangeLog src/wavpack/libwavpack.cxx
diffstat 2 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Oct 27 11:55:45 2006 -0700
+++ b/ChangeLog	Fri Oct 27 11:58:34 2006 -0700
@@ -1,3 +1,11 @@
+2006-10-27 18:55:45 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [258]
+  - don't cancel threads that don't exist (TODO: GThreadify)
+  
+  trunk/src/alarm/alarm.c |    4 +++-
+  1 file changed, 3 insertions(+), 1 deletion(-)
+
+
 2006-10-27 18:49:25 +0000  William Pitcock <nenolod@nenolod.net>
   revision [256]
   - enable legacy GTK APIs for alarm
--- a/src/wavpack/libwavpack.cxx	Fri Oct 27 11:55:45 2006 -0700
+++ b/src/wavpack/libwavpack.cxx	Fri Oct 27 11:58:34 2006 -0700
@@ -302,7 +302,8 @@
 
     ti = bmp_title_input_new();
 
-    ti->file_name = g_strdup(g_basename(fn));
+    ti->file_name = g_path_get_basename(fn);
+    ti->file_path = g_path_get_dirname(fn);
     ti->file_ext = "wv";
 
     load_tag(&tag, ctx);