comparison src/audacious/ui_fileinfo.c @ 4266:2b7a74fce100

Implemented support for multiple subplugins inside a plugin (see bug #148) and PluginHeader finalization
author stefano@zanga
date Sun, 10 Feb 2008 12:31:44 +0100
parents 708b5473f8d6
children 35d5b1b8aa1e
comparison
equal deleted inserted replaced
4265:7410b81a3362 4266:2b7a74fce100
355 set_field_str_from_entry(tuple, FIELD_COMMENT, entry_comment); 355 set_field_str_from_entry(tuple, FIELD_COMMENT, entry_comment);
356 set_field_str_from_entry(tuple, FIELD_GENRE, gtk_bin_get_child(GTK_BIN(entry_genre))); 356 set_field_str_from_entry(tuple, FIELD_GENRE, gtk_bin_get_child(GTK_BIN(entry_genre)));
357 357
358 set_field_int_from_entry(tuple, FIELD_YEAR, entry_year); 358 set_field_int_from_entry(tuple, FIELD_YEAR, entry_year);
359 set_field_int_from_entry(tuple, FIELD_TRACK_NUMBER, entry_track); 359 set_field_int_from_entry(tuple, FIELD_TRACK_NUMBER, entry_track);
360 360
361 plugin_set_current((Plugin *)current_ip);
361 if (current_ip->update_song_tuple(tuple, fd)) { 362 if (current_ip->update_song_tuple(tuple, fd)) {
362 message_update_successfull(); 363 message_update_successfull();
363 something_changed = FALSE; 364 something_changed = FALSE;
364 gtk_widget_set_sensitive(btn_apply, FALSE); 365 gtk_widget_set_sensitive(btn_apply, FALSE);
365 } else 366 } else