Improve docs
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 11 Jun 2008 17:00:57 +0000 (17:00 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 11 Jun 2008 17:00:57 +0000 (17:00 +0000)
svn path=/trunk/; revision=7006

docs/reference/ChangeLog
docs/reference/gobject/tmpl/gtype.sgml

index b8ba680e9856e5e4ccef368f46fcfce8b1999a48..61d6b1b69f43e8124de886f344699ff6a30a2033 100644 (file)
@@ -1,3 +1,11 @@
+2008-06-11  Matthias Clasen  <mclasen@redhat.com>
+
+       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  <mclasen@redhat.com>
 
        Bug 528719 – Improvement to the documentation of the
index c9363e2036e959eb3bc205ecfaf2e58e7455f4f7..9313bc04dc7e419aa8c2ae609b5b47e3f3e98b99 100644 (file)
@@ -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 <link linkend="glib-Memory-Slices">slice allocator</link> now.