From 8508c23248113b243e1e7e1041368d07a568b13c Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 6 Jan 2005 00:45:04 +0000 Subject: [PATCH] gst/gstvalue.c: Fix doc build problem. Original commit message from CVS: * gst/gstvalue.c: Fix doc build problem. --- ChangeLog | 4 ++++ gst/gstvalue.c | 12 ++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index e6e3f00b38..2d54a34028 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-01-05 David Schleef + + * gst/gstvalue.c: Fix doc build problem. + 2005-01-05 David Schleef * gst/gstvalue.c: Add some documentation diff --git a/gst/gstvalue.c b/gst/gstvalue.c index e6dad37f27..82fe3dbc90 100644 --- a/gst/gstvalue.c +++ b/gst/gstvalue.c @@ -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.