From b06b684589a618a2481ccc2745d5e03abb6bd5e0 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 21 Dec 2009 14:04:39 -0500 Subject: rename the obt_parse library to obt_xml (since it is very xml specific) --- openbox/actions/restart.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openbox/actions/restart.c') diff --git a/openbox/actions/restart.c b/openbox/actions/restart.c index 01de4f9a..7d1689cb 100644 --- a/openbox/actions/restart.c +++ b/openbox/actions/restart.c @@ -22,10 +22,10 @@ static gpointer setup_func(xmlNodePtr node) o = g_new0(Options, 1); - if ((n = obt_parse_find_node(node, "command")) || - (n = obt_parse_find_node(node, "execute"))) + if ((n = obt_xml_find_node(node, "command")) || + (n = obt_xml_find_node(node, "execute"))) { - gchar *s = obt_parse_node_string(n); + gchar *s = obt_xml_node_string(n); o->cmd = obt_paths_expand_tilde(s); g_free(s); } -- cgit v1.2.3