From: Sebastian Dröge Date: Fri, 10 Oct 2008 15:38:06 +0000 (+0000) Subject: gst/gstxml.c: Clarify that the save_thyself() and restore_thyself() virtual functions... X-Git-Tag: GIT_CONVERSION~125 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6543e71ef0285005fa3dfc3ab2a06a9f16b70af;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/ChangeLog b/ChangeLog index 49c9e06..de3ca1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-10-10 Sebastian Dröge + + * 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 * gst/gstpad.c: (gst_pad_get_range), (gst_pad_pull_range): diff --git a/gst/gstxml.c b/gst/gstxml.c index e4ed26a..ffb5425 100644 --- a/gst/gstxml.c +++ b/gst/gstxml.c @@ -30,8 +30,8 @@ * Additionally one can load saved pipelines into the gst-editor to inspect the * graph. * - * #GstElement implementations need to override gst_object_save_thyself() and - * gst_object_restore_thyself(). + * #GstElement implementations need to override the save_thyself() and + * restore_thyself() virtual functions of #GstObject. */ #include "gst_private.h"