X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fsession.c;h=b9e33b7461e283bd515afa96c6b9fec22baa4589;hb=a93b00a5e93281c7c2c31112f0b6b827d605a19d;hp=10759b2c597d2e8ae813ae1930efa4c921ba6c12;hpb=20bd592f8b7a5565d9b7ae89751de548c9e5d13a;p=chaz%2Fopenbox diff --git a/openbox/actions/session.c b/openbox/actions/session.c index 10759b2c..b9e33b74 100644 --- a/openbox/actions/session.c +++ b/openbox/actions/session.c @@ -8,7 +8,7 @@ typedef struct { gboolean silent; } Options; -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node); +static gpointer setup_func(xmlNodePtr node); static gboolean logout_func(ObActionsData *data, gpointer options); void action_session_startup(void) @@ -17,7 +17,7 @@ void action_session_startup(void) NULL, NULL); } -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) +static gpointer setup_func(xmlNodePtr node) { xmlNodePtr n; Options *o; @@ -25,20 +25,22 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) o = g_new0(Options, 1); o->prompt = TRUE; - if ((n = parse_find_node("prompt", node))) - o->prompt = parse_bool(doc, n); + if ((n = obt_parse_find_node(node, "prompt"))) + o->prompt = obt_parse_node_bool(n); return o; } 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 - 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 } return TRUE; /* call cleanup func */ @@ -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; }