gst/gstxml.c: Clarify that the save_thyself() and restore_thyself() virtual functions of GstObject need to be overrid...

Original commit message from CVS:
* gst/gstxml.c:
Clarify that the save_thyself() and restore_thyself() virtual
functions of GstObject need to be overriden, not
gst_object_(save|restore)_thyself() which is impossible.
Fixes bug #555700.
This commit is contained in:
Sebastian Dröge 2008-10-10 15:38:06 +00:00
parent 401cc7fe6a
commit e6543e71ef
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2008-10-10 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/gstxml.c:
Clarify that the save_thyself() and restore_thyself() virtual
functions of GstObject need to be overriden, not
gst_object_(save|restore)_thyself() which is impossible.
Fixes bug #555700.
2008-10-10 Wim Taymans <wim.taymans@collabora.co.uk> 2008-10-10 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/gstpad.c: (gst_pad_get_range), (gst_pad_pull_range): * gst/gstpad.c: (gst_pad_get_range), (gst_pad_pull_range):

View file

@ -30,8 +30,8 @@
* Additionally one can load saved pipelines into the gst-editor to inspect the * Additionally one can load saved pipelines into the gst-editor to inspect the
* graph. * graph.
* *
* #GstElement implementations need to override gst_object_save_thyself() and * #GstElement implementations need to override the save_thyself() and
* gst_object_restore_thyself(). * restore_thyself() virtual functions of #GstObject.
*/ */
#include "gst_private.h" #include "gst_private.h"