| 475 | } |
| 476 | |
| 477 | G_MODULE_EXPORT void |
| 478 | quit_action_cb (GSimpleAction *action, GVariant *param, gpointer data) |
| 479 | { |
| 480 | gint state = ghb_get_queue_state(); |
| 481 | if (state & (GHB_STATE_WORKING|GHB_STATE_SEARCHING)) |
| 482 | { |
| 483 | quit_dialog_show(); |
| 484 | return; |
| 485 | } |
| 486 | else |
| 487 | { |
| 488 | application_quit(); |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | static gboolean |
| 493 | uppers_and_unders(gchar *str) |
nothing calls this directly
no test coverage detected