diff src/libaudclient/audctrl.c @ 2941:d9a2434375f1 trunk

Automated merge with ssh://hg.atheme.org//hg/audacious
author William Pitcock <nenolod@atheme.org>
date Fri, 29 Jun 2007 08:58:32 -0500
parents 1cdfc508d758
children 3b6d316f8b09
line wrap: on
line diff
--- a/src/libaudclient/audctrl.c	Fri Jun 29 08:57:43 2007 -0500
+++ b/src/libaudclient/audctrl.c	Fri Jun 29 08:58:32 2007 -0500
@@ -64,7 +64,10 @@
  * Sends a list of URIs to Audacious to add to the playlist.
  **/
 void audacious_remote_playlist_add(DBusGProxy *proxy, GList *list) {
-//XXX
+	GList *iter;
+	for (iter = list; iter != NULL; iter = g_list_next(iter))
+		org_atheme_audacious_add(proxy, iter->data, &error);
+	g_clear_error(&error);
 }
 
 /**