diff options
| author | Dana Jansens <danakj@orodu.net> | 2009-12-21 14:04:39 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2009-12-21 14:08:38 -0500 |
| commit | b06b684589a618a2481ccc2745d5e03abb6bd5e0 (patch) | |
| tree | f0a48ae7e8dd6fef771dcb1de8f7f49b9a8e0863 /openbox/actions/exit.c | |
| parent | 04dc598a1fb195065403055fbb95589dd3511daa (diff) | |
rename the obt_parse library to obt_xml (since it is very xml specific)
Diffstat (limited to 'openbox/actions/exit.c')
| -rw-r--r-- | openbox/actions/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/exit.c b/openbox/actions/exit.c index 55d89a0b..f2b0cafb 100644 --- a/openbox/actions/exit.c +++ b/openbox/actions/exit.c @@ -25,8 +25,8 @@ static gpointer setup_func(xmlNodePtr node) o = g_new0(Options, 1); o->prompt = TRUE; - if ((n = obt_parse_find_node(node, "prompt"))) - o->prompt = obt_parse_node_bool(n); + if ((n = obt_xml_find_node(node, "prompt"))) + o->prompt = obt_xml_node_bool(n); return o; } |
