diff src/filewriter/filewriter.c @ 1976:5fa26178eaef

s/tuple_/aud_tuple_/g
author William Pitcock <nenolod@atheme.org>
date Sun, 07 Oct 2007 00:22:59 -0500
parents bf2ec8f4289b
children fa9f85cebade
line wrap: on
line diff
--- a/src/filewriter/filewriter.c	Wed Oct 03 17:24:59 2007 +0200
+++ b/src/filewriter/filewriter.c	Sun Oct 07 00:22:59 2007 -0500
@@ -203,7 +203,7 @@
 
     if (filenamefromtags)
     {
-        gchar *utf8 = tuple_formatter_make_title_string(tuple, get_gentitle_format());
+        gchar *utf8 = aud_tuple_formatter_make_title_string(tuple, get_gentitle_format());
 
         g_strchomp(utf8); //chop trailing ^J --yaz
 
@@ -214,7 +214,7 @@
     }
     if (filename == NULL)
     {
-        filename = g_strdup(tuple_get_string(tuple, FIELD_FILE_NAME, NULL));
+        filename = g_strdup(aud_tuple_get_string(tuple, FIELD_FILE_NAME, NULL));
         if (!use_suffix)
             if ((temp = strrchr(filename, '.')) != NULL)
                 *temp = '\0';
@@ -225,7 +225,7 @@
 
     if (prependnumber)
     {
-        gint number = tuple_get_int(tuple, FIELD_TRACK_NUMBER, NULL);
+        gint number = aud_tuple_get_int(tuple, FIELD_TRACK_NUMBER, NULL);
         if (!tuple || !number)
             number = pos + 1;
 
@@ -235,7 +235,7 @@
     }
 
     if (save_original)
-        directory = tuple_get_string(tuple, FIELD_FILE_PATH, NULL);
+        directory = aud_tuple_get_string(tuple, FIELD_FILE_PATH, NULL);
     else
         directory = file_path;