| 1691 | } |
| 1692 | |
| 1693 | static void |
| 1694 | queue_remove_dialog_show (GhbQueueRow *row) |
| 1695 | { |
| 1696 | GtkWidget *dialog; |
| 1697 | GtkWindow *queue_window; |
| 1698 | |
| 1699 | queue_window = GTK_WINDOW(ghb_builder_widget("queue_window")); |
| 1700 | dialog = ghb_cancel_dialog_new(queue_window, _("Remove Item in Progress?"), |
| 1701 | _("Your movie will be lost if you don't continue encoding."), |
| 1702 | _("Cancel and Remove"), NULL, NULL, _("Continue Encoding")); |
| 1703 | |
| 1704 | g_signal_connect(dialog, "response", G_CALLBACK(queue_remove_response), row); |
| 1705 | gtk_widget_set_visible(dialog, TRUE); |
| 1706 | } |
| 1707 | |
| 1708 | static void |
| 1709 | queue_remove_row_internal (GhbQueueRow *row) |
no test coverage detected