diff --git a/gst/gstobject.c b/gst/gstobject.c index d73f47762e..03cf175d2a 100644 --- a/gst/gstobject.c +++ b/gst/gstobject.c @@ -98,8 +98,6 @@ static GstAllocTrace *_gst_object_trace; #define DEBUG_REFCOUNT /* Object signals and args */ -/* FIXME-0.11: have a read-only parent property instead of the two signals - * then we get notify::parent for free */ enum { DEEP_NOTIFY, @@ -631,10 +629,7 @@ gst_object_get_name (GstObject * object) * @parent: new parent of object * * Sets the parent of @object to @parent. The object's reference count will - * be incremented, and any floating reference will be removed (see gst_object_sink()). - * - * This function causes the parent-set signal to be emitted when the parent - * was successfully set. + * be incremented, and any floating reference will be removed (see gst_object_ref_sink()). * * Returns: TRUE if @parent could be set or FALSE when @object * already had a parent or @object and @parent are the same. diff --git a/gst/gstobject.h b/gst/gstobject.h index dcf1c07c0c..dd0d126a35 100644 --- a/gst/gstobject.h +++ b/gst/gstobject.h @@ -157,9 +157,8 @@ typedef struct _GstObjectClass GstObjectClass; * GstObject: * @lock: object LOCK * @name: The name of the object - * @name_prefix: unused * @parent: this object's parent, weak ref - * @flags: use GST_OBJECT_IS_XXX macros to access the flags + * @flags: flags for this object * * GStreamer base object class. */