From: Nicolas Dufresne Date: Sat, 13 Jun 2015 13:37:46 +0000 (-0400) Subject: doc: Fix annoation for GstMiniObject X-Git-Tag: 1.6.1~227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54f6540f161be3b3f95dd9b163a3d38039304ca6;p=platform%2Fupstream%2Fgstreamer.git doc: Fix annoation for GstMiniObject Replacing reprecated "Ref Func:", "Unref Fun:" etc. comment block with appropriate (ref-func name) etc. annotation. --- diff --git a/gst/gstminiobject.h b/gst/gstminiobject.h index bd56553..15556fb 100644 --- a/gst/gstminiobject.h +++ b/gst/gstminiobject.h @@ -185,7 +185,7 @@ typedef enum { #define GST_MINI_OBJECT_REFCOUNT_VALUE(obj) (g_atomic_int_get (&(GST_MINI_OBJECT_CAST(obj))->refcount)) /** - * GstMiniObject: + * GstMiniObject: (ref-func gst_mini_object_ref) (unref-func gst_mini_object_unref) (set-value-func g_value_set_boxed) (get-value-func g_value_get_boxed) * @type: the GType of the object * @refcount: atomic refcount * @lockstate: atomic state of the locks @@ -195,10 +195,6 @@ typedef enum { * @free: the free function * * Base class for refcounted lightweight objects. - * Ref Func: gst_mini_object_ref - * Unref Func: gst_mini_object_unref - * Set Value Func: g_value_set_boxed - * Get Value Func: g_value_get_boxed */ struct _GstMiniObject { GType type;