Mercurial > audlegacy-plugins
diff src/timidity/xmms-timidity.c @ 1976:5fa26178eaef
s/tuple_/aud_tuple_/g
| author | William Pitcock <nenolod@atheme.org> |
|---|---|
| date | Sun, 07 Oct 2007 00:22:59 -0500 |
| parents | 6acf1bda788b |
| children | fa9f85cebade |
line wrap: on
line diff
--- a/src/timidity/xmms-timidity.c Wed Oct 03 17:24:59 2007 +0200 +++ b/src/timidity/xmms-timidity.c Sun Oct 07 00:22:59 2007 -0500 @@ -289,13 +289,13 @@ Tuple *input; gchar *title; - input = tuple_new_from_filename(filename); + input = aud_tuple_new_from_filename(filename); - title = tuple_formatter_make_title_string(input, get_gentitle_format()); + title = aud_tuple_formatter_make_title_string(input, get_gentitle_format()); if (title == NULL || *title == '\0') - title = g_strdup(tuple_get_string(input, FIELD_FILE_NAME, NULL)); + title = g_strdup(aud_tuple_get_string(input, FIELD_FILE_NAME, NULL)); - tuple_free(input); + aud_tuple_free(input); return title; }
