From: Matthias Clasen Date: Wed, 11 Jun 2008 17:00:57 +0000 (+0000) Subject: Improve docs X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=74820f48dba7fdc659319ac18ab084c145950f41;p=dana%2Fcg-glib.git Improve docs svn path=/trunk/; revision=7006 --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index b8ba680e..61d6b1b6 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,11 @@ +2008-06-11 Matthias Clasen + + Bug 530526 – Misprint in the description of the fields 'class_init' + and 'class_finalize' of the structure GTypeInfo + + * gobject/tmpl/gtype.sgml: Improve GTypeInfo docs + Proposed by Areg Beketovski + 2008-06-11 Matthias Clasen Bug 528719 – Improvement to the documentation of the diff --git a/docs/reference/gobject/tmpl/gtype.sgml b/docs/reference/gobject/tmpl/gtype.sgml index c9363e20..9313bc04 100644 --- a/docs/reference/gobject/tmpl/gtype.sgml +++ b/docs/reference/gobject/tmpl/gtype.sgml @@ -211,14 +211,14 @@ across invocation of g_type_register_static(). @base_init: Location of the base initialization function (optional). @base_finalize: Location of the base finalization function (optional). @class_init: Location of the class initialization function for - classed and types. Location of the default vtable inititalization - function for interface types. (optional) This function is used both - to fill in virtual functions in the class or default vtable, and - to do type-specific setup such as registering signals and object + classed and instantiatable types. Location of the default vtable + inititalization function for interface types. (optional) This function + is used both to fill in virtual functions in the class or default vtable, + and to do type-specific setup such as registering signals and object properties. @class_finalize: Location of the class finalization function for - classed and types. Location fo the default vtable finalization - function for interface types. (optional) + classed and instantiatable types. Location fo the default vtable + finalization function for interface types. (optional) @class_data: User-supplied data passed to the class init/finalize functions. @instance_size: Size of the instance (object) structure (required for instantiatable types only). @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the slice allocator now.