Fix a couple of instances of childs, which should be xmlChildrenNode. We need to be careful to stop these creeping b...

Original commit message from CVS:
Fix a couple of instances of childs, which should be xmlChildrenNode.  We
need to be careful to stop these creeping back in... ;-)
This commit is contained in:
Richard Boulton 2001-02-15 18:42:13 +00:00
parent 954663456a
commit b12b280b91

View file

@ -801,7 +801,7 @@ void
gst_pad_load_and_connect (xmlNodePtr self,
GstObject *parent)
{
xmlNodePtr field = self->childs;
xmlNodePtr field = self->xmlChildrenNode;
GstPad *pad = NULL, *targetpad;
guchar *peer = NULL;
gchar **split;
@ -1086,7 +1086,7 @@ gst_padtemplate_save_thyself (GstPadTemplate *templ, xmlNodePtr parent)
GstPadTemplate*
gst_padtemplate_load_thyself (xmlNodePtr parent)
{
xmlNodePtr field = parent->childs;
xmlNodePtr field = parent->xmlChildrenNode;
GstPadTemplate *factory = g_new0 (GstPadTemplate, 1);
while (field) {