doc: Fix doc comment for GstChildProxy

This removes warning like:

../subprojects/gstreamer/gst/gstchildproxy.h:57: Error: Gst: identifier not found on the first line:
   * #GstChildProxyInterface::get_child_by_name:
     ^

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1951>
This commit is contained in:
Nicolas Dufresne 2021-11-02 15:58:49 -04:00 committed by GStreamer Marge Bot
parent fde6521664
commit 4563989deb

View file

@ -54,7 +54,7 @@ struct _GstChildProxyInterface
/* methods */
/**
* #GstChildProxyInterface::get_child_by_name:
* GstChildProxyInterface.get_child_by_name:
* @parent: the #GstChildProxy
* @name: the name of the child to fetch
*
@ -65,7 +65,7 @@ struct _GstChildProxyInterface
GObject * (*get_child_by_name) (GstChildProxy * parent, const gchar * name);
/**
* #GstChildProxyInterface::get_child_by_index:
* GstChildProxyInterface.get_child_by_index:
* @parent: the #GstChildProxy
* @index: the index of the child to fetch
*
@ -76,7 +76,7 @@ struct _GstChildProxyInterface
GObject * (*get_child_by_index) (GstChildProxy * parent, guint index);
/**
* #GstChildProxyInterface::get_children_count:
* GstChildProxyInterface.get_children_count:
* @parent: the #GstChildProxy
*
* Get the number of children in @parent
@ -89,7 +89,7 @@ struct _GstChildProxyInterface
/* signals */
/**
* #GstChildProxyInterface::child_added:
* GstChildProxyInterface.child_added:
* @parent: the #GstChildProxy
* @child: the child object
* @name: the name of the child object
@ -99,7 +99,7 @@ struct _GstChildProxyInterface
void (*child_added) (GstChildProxy * parent, GObject * child, const gchar * name);
/**
* #GstChildProxyInterface::child_removed:
* GstChildProxyInterface.child_removed:
* @parent: the #GstChildProxy
* @child: the child object
* @name: the name of the child object