summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2015-06-13 12:32:49 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.co.uk>2015-06-13 12:32:49 -0400
commit7fdb15d6a2f048f504dde390f35d403a8e8f7848 (patch)
tree747a81875a91f9b76d2fbb17670a1b46bf9d049d /gst
parent92087ba75a8d5ac7a87f3acef144ff93975d897f (diff)
taglist: Add missing scope to func param
This tell GI if this function is for actions (call) or is the answer of this method being asynchronous (async). In this case it's a call. This also silence warning from the GI scanner.
Diffstat (limited to 'gst')
-rw-r--r--gst/gsttaglist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gsttaglist.c b/gst/gsttaglist.c
index faa725281..5b644dc12 100644
--- a/gst/gsttaglist.c
+++ b/gst/gsttaglist.c
@@ -468,7 +468,7 @@ gst_tag_lookup (const gchar * tag_name)
* @type: the type this data is in
* @nick: human-readable name
* @blurb: a human-readable description about this tag
- * @func: (allow-none): function for merging multiple values of this tag, or %NULL
+ * @func: (allow-none) (scope call): function for merging multiple values of this tag, or %NULL
*
* Registers a new tag type for the use with GStreamer's type system. If a type
* with that name is already registered, that one is used.
@@ -512,7 +512,7 @@ gst_tag_register (const gchar * name, GstTagFlag flag, GType type,
* @type: the type this data is in
* @nick: human-readable name or short description (string constant)
* @blurb: a human-readable description for this tag (string constant)
- * @func: (allow-none): function for merging multiple values of this tag, or %NULL
+ * @func: (allow-none) (scope call): function for merging multiple values of this tag, or %NULL
*
* Registers a new tag type for the use with GStreamer's type system.
*