gst/gstvalue.c: Fix doc build problem.

Original commit message from CVS:
* gst/gstvalue.c: Fix doc build problem.
This commit is contained in:
David Schleef 2005-01-06 00:45:04 +00:00
parent b7f6134053
commit 8508c23248
2 changed files with 8 additions and 8 deletions

View file

@ -1,3 +1,7 @@
2005-01-05 David Schleef <ds@schleef.org>
* gst/gstvalue.c: Fix doc build problem.
2005-01-05 David Schleef <ds@schleef.org>
* gst/gstvalue.c: Add some documentation

View file

@ -2270,16 +2270,12 @@ gst_value_register_subtract_func (GType minuend_type, GType subtrahend_type,
*/
/**
* GstValueTable:
*
* type - GType that the functions operate on.
*
* compare - A function that compares two values of this type.
*
* serialize - A function that transforms a value of this type to a
* @type: GType that the functions operate on.
* @compare: A function that compares two values of this type.
* @serialize: A function that transforms a value of this type to a
* string. Strings created by this function must be unique and should
* be human readable.
*
* deserialize - A function that transforms a string to a value of
* @deserialize: A function that transforms a string to a value of
* this type. This function must transform strings created by the
* serialize function back to the original value. This function may
* optionally transform other strings into values.