]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/moverelative.c
rename the obt_parse library to obt_xml (since it is very xml specific)
[chaz/openbox] / openbox / actions / moverelative.c
index 5bcdda446b80c19d901dea48635b37a81ab9244a..ff9f719b98e6e9f335fd98ff2129d4709c0ee0bc 100644 (file)
@@ -24,10 +24,10 @@ static gpointer setup_func(xmlNodePtr node)
 
     o = g_new0(Options, 1);
 
-    if ((n = obt_parse_find_node(node, "x")))
-        o->x = obt_parse_node_int(n);
-    if ((n = obt_parse_find_node(node, "y")))
-        o->y = obt_parse_node_int(n);
+    if ((n = obt_xml_find_node(node, "x")))
+        o->x = obt_xml_node_int(n);
+    if ((n = obt_xml_find_node(node, "y")))
+        o->y = obt_xml_node_int(n);
 
     return o;
 }
This page took 0.025398 seconds and 4 git commands to generate.