X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Factions%2Fsession.c;h=b9e33b7461e283bd515afa96c6b9fec22baa4589;hb=73575c10ce3ede1637e4f959b56e1f7d5f110b91;hp=a70aee501333b7586d7a2759d3e5bc0d705030b1;hpb=6799c67c07e99c440f549802f60d9f16995ab711;p=chaz%2Fopenbox diff --git a/openbox/actions/session.c b/openbox/actions/session.c index a70aee50..b9e33b74 100644 --- a/openbox/actions/session.c +++ b/openbox/actions/session.c @@ -33,11 +33,13 @@ static gpointer setup_func(xmlNodePtr node) static gboolean prompt_cb(ObPrompt *p, gint result, gpointer data) { - Options *o = data; if (result) { #ifdef USE_SM + Options *o = data; session_request_logout(o->silent); #else + /* 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 } @@ -70,7 +72,7 @@ static gboolean logout_func(ObActionsData *data, gpointer options) prompt_show(p, NULL, FALSE); } else - prompt_cb(NULL, 1, NULL); + prompt_cb(NULL, 1, o); return FALSE; }