diff src/xs_fileinfo.c @ 230:608f31f6c095

Raw cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 21 Dec 2004 09:25:03 +0000
parents dcf88b73e4c1
children e613873c3379
line wrap: on
line diff
--- a/src/xs_fileinfo.c	Sun Dec 19 16:57:01 2004 +0000
+++ b/src/xs_fileinfo.c	Tue Dec 21 09:25:03 2004 +0000
@@ -29,10 +29,17 @@
 #include "xs_glade.h"
 
 static GtkWidget		*xs_fileinfowin = NULL;
+static t_xs_stil_node		*xs_fileinfostil = NULL;
+static t_xs_tuneinfo		*xs_fileinfotune = NULL;
 
 #define LUW(x...)	lookup_widget(xs_fileinfowin, ## x)
 
 
+void xs_fileinfo_setsong(void)
+{
+}
+
+
 void xs_fileinfo_ok(void)
 {
  gtk_widget_destroy(xs_fileinfowin);
@@ -95,7 +102,7 @@
 
  /* Free old info, if set */
  if (xs_fileinfotune)
- 	xs_tune_free(xs_fileinfotune);
+ 	xs_tuneinfo_free(xs_fileinfotune);
  
  /* Get new tune information */
  if ((xs_fileinfotune = xs_player->plrGetSIDInfo(pcFilename)) == NULL)
@@ -174,9 +181,6 @@
  /* Set the subtune information */
  xs_fileinfo_subtune(NULL, tmpMenu);
 
- /* Update subtune controls */
- xs_subctrl_update();
-
  /* Show the window */
  gtk_widget_show(xs_fileinfowin);
 }