| 1640 | } |
| 1641 | |
| 1642 | static GtkWidget *find_widget(GtkWidget *widget, const gchar *name) |
| 1643 | { |
| 1644 | GtkWidget *result = NULL; |
| 1645 | |
| 1646 | result = find_widget_recurse(widget, name); |
| 1647 | if (result == NULL) |
| 1648 | { |
| 1649 | g_debug("Failed to find audio widget %s", name); |
| 1650 | } |
| 1651 | return result; |
| 1652 | } |
| 1653 | |
| 1654 | static void audio_def_update_widgets(GtkWidget *row, GhbValue *adict) |
| 1655 | { |
no test coverage detected