| 3333 | } |
| 3334 | |
| 3335 | static void |
| 3336 | init_ui_combo_boxes (void) |
| 3337 | { |
| 3338 | gint ii; |
| 3339 | GtkComboBox *combo; |
| 3340 | |
| 3341 | for (ii = 0; combo_name_map[ii].name != NULL; ii++) |
| 3342 | { |
| 3343 | combo = GTK_COMBO_BOX(ghb_builder_widget(combo_name_map[ii].name)); |
| 3344 | ghb_init_combo_box(combo); |
| 3345 | } |
| 3346 | } |
| 3347 | |
| 3348 | gint64 |
| 3349 | ghb_chapter_range_get_duration(const hb_title_t *title, gint sc, gint ec) |
no test coverage detected