Mercurial > audlegacy
changeset 2707:59f66e882499 trunk
[svn] - remove unused function 'extname'
author | nenolod |
---|---|
date | Tue, 08 May 2007 12:30:53 -0700 |
parents | 958d12f78138 |
children | b66e6a928a6e |
files | ChangeLog src/audacious/build_stamp.c src/audacious/input.c |
diffstat | 3 files changed, 11 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue May 08 10:26:29 2007 -0700 +++ b/ChangeLog Tue May 08 12:30:53 2007 -0700 @@ -1,3 +1,13 @@ +2007-05-08 17:26:29 +0000 Ben Tucker <bnt@interchange.ubc.ca> + revision [4438] + Completed the implementation of all the stubs in dbus.c, and commented the creation of the mpris dbus bindings to fix compilation issues. + + trunk/src/audacious/Makefile | 6 +++--- + trunk/src/audacious/dbus.c | 17 +++++++++++++++++ + trunk/src/audacious/objects.xml | 2 +- + 3 files changed, 21 insertions(+), 4 deletions(-) + + 2007-05-08 01:04:06 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4436] - define mpris /Player object in XML.
--- a/src/audacious/build_stamp.c Tue May 08 10:26:29 2007 -0700 +++ b/src/audacious/build_stamp.c Tue May 08 12:30:53 2007 -0700 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070508-4436"; +const gchar *svn_stamp = "20070508-4438";
--- a/src/audacious/input.c Tue May 08 10:26:29 2007 -0700 +++ b/src/audacious/input.c Tue May 08 12:30:53 2007 -0700 @@ -290,17 +290,6 @@ !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(object)); } -static gchar *extname(const char *filename) -{ - gchar *ext = strrchr(filename, '.'); - - if (ext != NULL) { - ++ext; - return ext; - } - else return ""; -} - /* * input_check_file() *