| 3817 | } countdown_t; |
| 3818 | |
| 3819 | static gboolean |
| 3820 | quit_cb(countdown_t *cd) |
| 3821 | { |
| 3822 | cd->timeout--; |
| 3823 | if (cd->timeout <= 0) |
| 3824 | { |
| 3825 | gtk_window_destroy(GTK_WINDOW(cd->dlg)); |
| 3826 | application_quit(); |
| 3827 | return FALSE; |
| 3828 | } |
| 3829 | else |
| 3830 | { |
| 3831 | gtk_message_dialog_format_secondary_text(cd->dlg, _("%s in %d seconds…"), |
| 3832 | cd->action, cd->timeout); |
| 3833 | return TRUE; |
| 3834 | } |
| 3835 | } |
| 3836 | |
| 3837 | static gboolean |
| 3838 | shutdown_cb(countdown_t *cd) |
nothing calls this directly
no test coverage detected