| 1606 | } |
| 1607 | |
| 1608 | G_MODULE_EXPORT void |
| 1609 | audio_reset_cb (GSimpleAction *action, GVariant *param, gpointer data) |
| 1610 | { |
| 1611 | signal_user_data_t *ud = ghb_ud(); |
| 1612 | set_pref_audio_settings(ud->settings); |
| 1613 | sanitize_audio_tracks(ud); |
| 1614 | audio_update_dialog_widgets(ud, audio_get_selected_settings(ud, NULL)); |
| 1615 | audio_refresh_list_ui(ud); |
| 1616 | ghb_update_summary_info(ud); |
| 1617 | } |
| 1618 | |
| 1619 | static GtkWidget *find_widget_recurse(GtkWidget *widget, const gchar *name) |
| 1620 | { |
nothing calls this directly
no test coverage detected