| 3835 | } |
| 3836 | |
| 3837 | static gboolean |
| 3838 | shutdown_cb(countdown_t *cd) |
| 3839 | { |
| 3840 | cd->timeout--; |
| 3841 | gtk_message_dialog_format_secondary_text(cd->dlg, _("%s in %d seconds…"), |
| 3842 | cd->action, cd->timeout); |
| 3843 | if (cd->timeout == 0) |
| 3844 | { |
| 3845 | ghb_hb_cleanup(FALSE); |
| 3846 | prune_logs(); |
| 3847 | |
| 3848 | shutdown_logind(); |
| 3849 | g_application_quit(g_application_get_default()); |
| 3850 | return FALSE; |
| 3851 | } |
| 3852 | return TRUE; |
| 3853 | } |
| 3854 | |
| 3855 | static gboolean |
| 3856 | suspend_cb(countdown_t *cd) |
nothing calls this directly
no test coverage detected