X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fsession.c;h=27df917a0043a9fa7ff2bc891a28bdc304f6e208;hb=7fb107cd37a09787c5cfa590688944b3bcb2bab8;hp=b6eebcb6248b2273dedf8a26c340427ae60b36e9;hpb=ac255432b46617fe01fd40fd02fdea878893ce3c;p=chaz%2Fopenbox diff --git a/openbox/actions/session.c b/openbox/actions/session.c index b6eebcb6..27df917a 100644 --- a/openbox/actions/session.c +++ b/openbox/actions/session.c @@ -31,17 +31,22 @@ static gpointer setup_func(xmlNodePtr node) return o; } -static void prompt_cb(ObPrompt *p, gint result, gpointer data) +static gboolean prompt_cb(ObPrompt *p, gint result, gpointer data) { Options *o = data; if (result) { -#ifndef USE_SM +#ifdef USE_SM session_request_logout(o->silent); #else g_message(_("The SessionLogout actions is not available since Openbox was built without session management support")); #endif } - g_free(o); + return TRUE; /* call cleanup func */ +} + +static void prompt_cleanup(ObPrompt *p, gpointer data) +{ + g_free(data); prompt_unref(p); } @@ -60,7 +65,8 @@ static gboolean logout_func(ObActionsData *data, gpointer options) o2 = g_memdup(o, sizeof(Options)); p = prompt_new(_("Are you sure you want to log out?"), - answers, 2, 0, 0, prompt_cb, o2); + _("Log out"), + answers, 2, 0, 0, prompt_cb, prompt_cleanup, o2); prompt_show(p, NULL, FALSE); } else