mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
chain bin restore to parent method
Original commit message from CVS: chain bin restore to parent method
This commit is contained in:
parent
6a99b71662
commit
b518d9efc0
2 changed files with 8 additions and 0 deletions
|
@ -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):
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue