changeset 664:0fef72dce601

Rename pcFilename -> filename.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Apr 2008 00:34:07 +0300
parents 180d7a0250d8
children 94186706beed
files src/xs_fileinfo.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/xs_fileinfo.c	Thu Apr 03 00:26:53 2008 +0300
+++ b/src/xs_fileinfo.c	Thu Apr 03 00:34:07 2008 +0300
@@ -167,7 +167,7 @@
 }
 
 
-void xs_fileinfo(gchar * pcFilename)
+void xs_fileinfo(gchar * filename)
 {
     GtkWidget *tmpMenuItem, *tmpMenu, *tmpOptionMenu;
     xs_tuneinfo_t *tmpInfo;
@@ -179,9 +179,9 @@
      * no information can be found for the new file. Hmm...
      */
 #ifdef AUDACIOUS_PLUGIN
-    xs_get_trackinfo(pcFilename, &tmpFilename, &n);
+    xs_get_trackinfo(filename, &tmpFilename, &n);
 #else
-    tmpFilename = pcFilename;
+    tmpFilename = filename;
 #endif    
 
     /* Get new tune information */
@@ -220,7 +220,7 @@
 
 
     /* Set the generic song information */
-    tmpFilename = XS_CS_FILENAME(pcFilename);
+    tmpFilename = XS_CS_FILENAME(filename);
     gtk_entry_set_text(GTK_ENTRY(LUW("fileinfo_filename")), tmpFilename);
     g_free(tmpFilename);
     gtk_entry_set_text(GTK_ENTRY(LUW("fileinfo_songname")), tmpInfo->sidName);