From: Stefan Kost Date: Sat, 21 Jun 2008 16:24:52 +0000 (+0000) Subject: Add titles back from tmpl. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=bce5ebd421cba702f51dc689adf5a2bd9771be96;p=dana%2Fcg-glib.git Add titles back from tmpl. * gobject/gboxed.c: * gobject/gclosure.c: * gobject/genums.c: * gobject/gparam.c: * gobject/gvalue.c: Add titles back from tmpl. svn path=/trunk/; revision=7076 --- diff --git a/ChangeLog b/ChangeLog index a3ed7630..8fda23f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-06-21 Stefan Kost + + * gobject/gboxed.c: + * gobject/gclosure.c: + * gobject/genums.c: + * gobject/gparam.c: + * gobject/gvalue.c: + Add titles back from tmpl. + 2008-06-21 Stefan Kost * docs/reference/gobject/tmpl/gtype.sgml: diff --git a/gobject/gboxed.c b/gobject/gboxed.c index 1485f731..907cf8e5 100644 --- a/gobject/gboxed.c +++ b/gobject/gboxed.c @@ -20,6 +20,7 @@ * SECTION:gboxed * @Short_description: A mechanism to wrap opaque C structures registered by the type system * @See_also:#GParamSpecBoxed, g_param_spec_boxed() + * @Title: Boxed Types * * GBoxed is a generic wrapper mechanism for arbitrary C structures. The only * thing the type system needs to know about the structures is how to copy and diff --git a/gobject/gclosure.c b/gobject/gclosure.c index 96911724..64a31abc 100644 --- a/gobject/gclosure.c +++ b/gobject/gclosure.c @@ -20,6 +20,7 @@ /** * SECTION:gclosure * @Short_description: Functions as first-class objects + * @Title: Closures * * A #GClosure represents a callback supplied by the programmer. It will generally * comprise a function of some kind and a marshaller used to call it. It is the diff --git a/gobject/genums.c b/gobject/genums.c index 53365b63..5dff11b9 100644 --- a/gobject/genums.c +++ b/gobject/genums.c @@ -21,6 +21,7 @@ * @Short_description: Enumeration and flags types * @See_also:#GParamSpecEnum, #GParamSpecFlags, g_param_spec_enum(), g_param_spec_flags(), * glib-mkenums + * @Title: Enumeration and Flag Types * * The GLib type system provides fundamental types for enumeration and flags types. (Flags types * are like enumerations, but allow their values to be combined by bitwise or). A registered diff --git a/gobject/gparam.c b/gobject/gparam.c index 71de194b..544f431d 100644 --- a/gobject/gparam.c +++ b/gobject/gparam.c @@ -21,6 +21,7 @@ * @Short_description: Metadata for parameter specifications * @See_also:g_object_class_install_property(), g_object_set(), g_object_get(), * g_object_set_property(), g_object_get_property(), g_value_register_transform_func() + * @Title: GParamSpec * * #GParamSpec is an object structure that encapsulates the metadata * required to specify parameters, such as e.g. #GObject properties. diff --git a/gobject/gvalue.c b/gobject/gvalue.c index 4e810d3e..4ebbbbc0 100644 --- a/gobject/gvalue.c +++ b/gobject/gvalue.c @@ -24,6 +24,7 @@ * a separate interface. See the Standard Values * API for details. + * @Title: Generic values * * The #GValue structure is basically a variable container that consists * of a type identifier and a specific value of that type.