changeset 1696:cd8711f34c88 trunk

[svn] - DND fixes
author nenolod
date Fri, 15 Sep 2006 07:46:49 -0700
parents 3cf80d8a6d8d
children e4d9d2657d9a
files ChangeLog audacious/mainwin.c
diffstat 2 files changed, 24 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Sep 15 06:36:26 2006 -0700
+++ b/ChangeLog	Fri Sep 15 07:46:49 2006 -0700
@@ -1,3 +1,25 @@
+2006-09-15 13:36:26 +0000  Jonathan Schleifer <js@h3c.de>
+  revision [2327]
+  - Removed .cpp.o target since we don't have any .cpp files anymore.
+  - A test build then revealed that we still had two .cpp files in
+    Plugins/Input/musepack, fixed that.
+  - Moved nenolod's fix from init.mk to objective.mk.
+  - Removed call to ldconfig in Makefile and replaced it with a hint to
+    call ldconfig manually, since ldconfig without parameters breaks some
+    systems (mainly OpenBSD).
+  - I hope I did not forget to list a change I did ;)
+  
+
+  Changes:        Modified:
+  +6 -3           trunk/Makefile  
+  +3 -0           trunk/Plugins/Input/flac/plugin_common/Makefile.in  
+  +2 -2           trunk/Plugins/Input/musepack/Makefile.in  
+  +196 -196       trunk/Plugins/Input/musepack/equalizer.cpp  
+  +880 -880       trunk/Plugins/Input/musepack/libmpc.cpp  
+  +0 -3           trunk/mk/init.mk  
+  +3 -1           trunk/mk/objective.mk  
+
+
 2006-09-14 21:06:45 +0000  William Pitcock <nenolod@nenolod.net>
   revision [2325]
   - enforce support of our file extensions through use of the .SUFFIXES target
--- a/audacious/mainwin.c	Fri Sep 15 06:36:26 2006 -0700
+++ b/audacious/mainwin.c	Fri Sep 15 07:46:49 2006 -0700
@@ -1956,10 +1956,10 @@
 
     if (str_has_prefix_nocase((gchar *) selection_data->data, "fonts:///"))
     {
-        gchar *path = selection_data->data + 9;		/* skip fonts:/// */
+        gchar *path = (gchar *) selection_data->data + 9;		/* skip fonts:/// */
 	gchar *decoded = xmms_urldecode_plain(path);
 
-        cfg.playlist_font = g_strconcat(decoded, strrchr(cfg.playlist_font, " "), NULL);
+        cfg.playlist_font = g_strconcat(decoded, strrchr(cfg.playlist_font, ' '), NULL);
         playlist_list_set_font(cfg.playlist_font);
         playlistwin_update_list();