| 1731 | } |
| 1732 | |
| 1733 | void |
| 1734 | ghb_queue_remove_row_at_index (int index) |
| 1735 | { |
| 1736 | GtkListBox *lb = GTK_LIST_BOX(ghb_builder_widget("queue_list")); |
| 1737 | GhbQueueRow *row = GHB_QUEUE_ROW(gtk_list_box_get_row_at_index(lb, index)); |
| 1738 | |
| 1739 | if (GHB_IS_QUEUE_ROW(row)) |
| 1740 | queue_remove_row_internal(row); |
| 1741 | } |
| 1742 | |
| 1743 | void |
| 1744 | ghb_queue_buttons_grey (signal_user_data_t *ud) |
no test coverage detected