]> Dogcows Code - chaz/openbox/blobdiff - parser/parse.c
* Change xml parsing to pass the parent node, rather than the first
[chaz/openbox] / parser / parse.c
index 2b81594adcf38032682c6c0aa96f4e1d61631684..72643652e9ce588f5905a8c4a750d581517c9f67 100644 (file)
@@ -100,7 +100,7 @@ void parse_tree(xmlDocPtr doc, xmlNodePtr node, void *nothing)
         struct Callback *c = g_hash_table_lookup(callbacks, node->name);
 
         if (c)
-            c->func(doc, node->xmlChildrenNode, c->data);
+            c->func(doc, node, c->data);
 
         node = node->next;
     }
This page took 0.022916 seconds and 4 git commands to generate.