# HG changeset patch # User kiyoshi # Date 1165841806 28800 # Node ID 7ea9a6177232889c76d7d2d0ef06a1645d5fe922 # Parent b05046902327766bd4939b54ece6d397dfef6954 [svn] Update equalizer.c to new API diff -r b05046902327 -r 7ea9a6177232 ChangeLog --- a/ChangeLog Mon Dec 11 04:53:17 2006 -0800 +++ b/ChangeLog Mon Dec 11 04:56:46 2006 -0800 @@ -1,3 +1,10 @@ +2006-12-11 12:53:17 +0000 Kiyoshi Aman + revision [3191] + Oops. controlsocket.c is *much* happier now that the arguments are in the right order. >.> + trunk/audacious/controlsocket.c | 32 ++++++++++++++++---------------- + 1 file changed, 16 insertions(+), 16 deletions(-) + + 2006-12-11 12:53:05 +0000 William Pitcock revision [3189] - update to new API diff -r b05046902327 -r 7ea9a6177232 audacious/equalizer.c --- a/audacious/equalizer.c Mon Dec 11 04:53:17 2006 -0800 +++ b/audacious/equalizer.c Mon Dec 11 04:56:46 2006 -0800 @@ -1689,7 +1689,8 @@ else gtk_window_present(GTK_WINDOW(equalizerwin_save_auto_window)); - name = playlist_get_filename(playlist_get_position()); + name = playlist_get_filename(playlist_get_active(), + playlist_get_position(playlist_get_active())); if (name) { gtk_entry_set_text(GTK_ENTRY(equalizerwin_save_auto_entry), @@ -1714,7 +1715,8 @@ G_CALLBACK(equalizerwin_file_chooser_on_response), save_preset_file); - songname = playlist_get_filename(playlist_get_position()); + songname = playlist_get_filename(playlist_get_active(), + playlist_get_position(playlist_get_active())); if (songname) { gchar *eqname = g_strdup_printf("%s.%s", songname, cfg.eqpreset_extension);