| 1652 | } |
| 1653 | |
| 1654 | static void audio_def_update_widgets(GtkWidget *row, GhbValue *adict) |
| 1655 | { |
| 1656 | GhbDictIter ti; |
| 1657 | const gchar *key; |
| 1658 | GhbValue *gval; |
| 1659 | GtkWidget *widget; |
| 1660 | |
| 1661 | ti = ghb_dict_iter_init(adict); |
| 1662 | |
| 1663 | block_updates = TRUE; |
| 1664 | while (ghb_dict_iter_next(adict, &ti, &key, &gval)) |
| 1665 | { |
| 1666 | widget = find_widget(row, key); |
| 1667 | if (widget != NULL) |
| 1668 | { |
| 1669 | ghb_update_widget(widget, gval); |
| 1670 | } |
| 1671 | } |
| 1672 | block_updates = FALSE; |
| 1673 | } |
| 1674 | |
| 1675 | static GtkListBoxRow* |
| 1676 | audio_settings_get_row(GtkWidget *widget) |
no test coverage detected