X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fsession.c;h=b9e33b7461e283bd515afa96c6b9fec22baa4589;hb=a93b00a5e93281c7c2c31112f0b6b827d605a19d;hp=b6eebcb6248b2273dedf8a26c340427ae60b36e9;hpb=c70379fa8f771e499a4d47e84af06d71838b780d;p=chaz%2Fopenbox diff --git a/openbox/actions/session.c b/openbox/actions/session.c index b6eebcb6..b9e33b74 100644 --- a/openbox/actions/session.c +++ b/openbox/actions/session.c @@ -31,17 +31,24 @@ 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 + Options *o = data; session_request_logout(o->silent); #else - g_message(_("The SessionLogout actions is not available since Openbox was built without session management support")); + /* TRANSLATORS: Don't translate the word "SessionLogout" as it's the + name of the action you write in rc.xml */ + g_message(_("The SessionLogout action 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); } @@ -55,16 +62,17 @@ static gboolean logout_func(ObActionsData *data, gpointer options) ObPrompt *p; ObPromptAnswer answers[] = { { _("Cancel"), 0 }, - { _("Log out"), 1 } + { _("Log Out"), 1 } }; 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 - prompt_cb(NULL, 1, NULL); + prompt_cb(NULL, 1, o); return FALSE; }