X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fdebug.c;h=99446bc471a9e74fdb35ad95e294a9cc43f69102;hb=9614dd8da2cd34475d84bf9b5366f6e73481ca6c;hp=f219e05971c79d3d2134dc6da6dda4990ac0b584;hpb=9dacac5e5e6b9ed86e76680b048bc227d8866ac6;p=chaz%2Fopenbox diff --git a/openbox/actions/debug.c b/openbox/actions/debug.c index f219e059..99446bc4 100644 --- a/openbox/actions/debug.c +++ b/openbox/actions/debug.c @@ -5,46 +5,32 @@ typedef struct { gchar *str; } Options; -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node); +static gpointer setup_func(xmlNodePtr node); static void free_func(gpointer options); static gboolean run_func(ObActionsData *data, gpointer options); -/* -static gboolean i_input_func(guint initial_state, - XEvent *e, - gpointer options, - gboolean *used); -static void i_cancel_func(gpointer options); -*/ - -void action_debug_startup() + +void action_debug_startup(void) { - actions_register("Debug", - setup_func, - free_func, - run_func, - NULL, NULL); + actions_register("Debug", setup_func, free_func, run_func); } -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) +static gpointer setup_func(xmlNodePtr node) { xmlNodePtr n; Options *o; - o = g_new0(Options, 1); + o = g_slice_new0(Options); - if ((n = parse_find_node("string", node))) - o->str = parse_string(doc, n); + if ((n = obt_xml_find_node(node, "string"))) + o->str = obt_xml_node_string(n); return o; } static void free_func(gpointer options) { Options *o = options; - - if (o) { - g_free(o->str); - g_free(o); - } + g_free(o->str); + g_slice_free(Options, o); } /* Always return FALSE because its not interactive */