chain bin restore to parent method

Original commit message from CVS:
chain bin restore to parent method
This commit is contained in:
Thomas Vander Stichele 2004-07-04 10:26:24 +00:00
parent 6a99b71662
commit b518d9efc0
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-07-04 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gstbin.c: (gst_bin_restore_thyself):
chain to parent restore so the bins get restored correctly
in the editor
2004-07-03 David Schleef <ds@schleef.org>
* gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):

View file

@ -1106,6 +1106,8 @@ gst_bin_restore_thyself (GstObject * object, xmlNodePtr self)
field = field->next;
}
if (GST_OBJECT_CLASS (parent_class)->restore_thyself)
(GST_OBJECT_CLASS (parent_class)->restore_thyself) (object, self);
}
#endif /* GST_DISABLE_LOADSAVE */