diff --git a/ChangeLog b/ChangeLog index 4a4bb3ead4..ad4a67bfab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-12-12 Stefan Kost + + * gst/gstvalue.c: + * gst/gstvalue.h: + Add more missing "Since:" tags to docs. + 2007-12-12 Stefan Kost * gst/gstutils.c: diff --git a/gst/gstvalue.c b/gst/gstvalue.c index 3416e80fdc..6e4410864a 100644 --- a/gst/gstvalue.c +++ b/gst/gstvalue.c @@ -1292,6 +1292,8 @@ gst_value_deserialize_caps (GValue * dest, const gchar * s) * @structure: the structure to set the value to * * Sets the contents of @value to @structure. The actual + * + * Since: 0.10.15 */ void gst_value_set_structure (GValue * value, const GstStructure * structure) @@ -1308,6 +1310,8 @@ gst_value_set_structure (GValue * value, const GstStructure * structure) * Gets the contents of @value. * * Returns: the contents of @value + * + * Since: 0.10.15 */ const GstStructure * gst_value_get_structure (const GValue * value) diff --git a/gst/gstvalue.h b/gst/gstvalue.h index 09a77c9d95..3209337487 100644 --- a/gst/gstvalue.h +++ b/gst/gstvalue.h @@ -146,6 +146,8 @@ G_BEGIN_DECLS * @x: the #GValue to check * * Checks if the given #GValue contains a #GST_TYPE_STRUCTURE value. + * + * Since: 0.10.15 */ #define GST_VALUE_HOLDS_STRUCTURE(x) (G_VALUE_HOLDS(x, GST_TYPE_STRUCTURE))