chain parent class handlers, pointed out by Joshua N Pritikin

Thu Aug 23 16:26:47 2001  Tim Janik  <timj@gtk.org>

        * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
        * gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
        handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
This commit is contained in:
Tim Janik
2001-08-23 16:54:49 +00:00
committed by Tim Janik
parent 44229b60b2
commit 0b5311f5e9
12 changed files with 57 additions and 8 deletions

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1,3 +1,9 @@
Thu Aug 23 16:26:47 2001 Tim Janik <timj@gtk.org>
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_finalize):
* gtk/gtktextmark.c (gtk_text_mark_finalize): chain parent class
handlers, pointed out by Joshua N Pritikin <vishnu@pobox.com>.
Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com> Wed Aug 22 19:15:39 2001 Owen Taylor <otaylor@redhat.com>
[ Patch from Sebastian Wilhelmi, 52790 ] [ Patch from Sebastian Wilhelmi, 52790 ]

View File

@ -1613,13 +1613,6 @@ Get the type of GtkIdentifier.
@menu: @menu:
@Returns: @Returns:
<!-- ##### MACRO gtk_notebook_set_page ##### -->
<para>
</para>
@notebook:
@page_num:
<!-- ##### FUNCTION gtk_object_arg_get ##### --> <!-- ##### FUNCTION gtk_object_arg_get ##### -->
<para> <para>
Private function to get an argument and argument info from an object. Private function to get an argument and argument info from an object.

View File

@ -132,6 +132,15 @@ Deprecated compatibility macro.
@Returns: @Returns:
<!-- ##### MACRO gtk_notebook_set_page ##### -->
<para>
</para>
<!-- # Unused Parameters # -->
@notebook:
@page_num:
<!-- ##### FUNCTION gtk_notebook_next_page ##### --> <!-- ##### FUNCTION gtk_notebook_next_page ##### -->
<para> <para>
</para> </para>

View File

@ -495,6 +495,7 @@ This can later be composited together with other
#GtkRcStyle structures to form a #GtkStyle. #GtkRcStyle structures to form a #GtkStyle.
</para> </para>
@parent_instance:
@name: @name:
@bg_pixmap_name: @bg_pixmap_name:
@font_desc: @font_desc:

View File

@ -125,6 +125,9 @@ gtk_text_mark_finalize (GObject *obj)
mark->segment = NULL; mark->segment = NULL;
} }
/* chain parent_class' handler */
G_OBJECT_CLASS (parent_class)->finalize (obj);
} }
/** /**

View File

@ -303,7 +303,6 @@ gtk_tree_view_column_finalize (GObject *object)
GtkTreeViewColumn *tree_column = (GtkTreeViewColumn *) object; GtkTreeViewColumn *tree_column = (GtkTreeViewColumn *) object;
GList *list; GList *list;
for (list = tree_column->cell_list; list; list = list->next) for (list = tree_column->cell_list; list; list = list->next)
{ {
GtkTreeViewColumnCellInfo *info = (GtkTreeViewColumnCellInfo *) list->data; GtkTreeViewColumnCellInfo *info = (GtkTreeViewColumnCellInfo *) list->data;
@ -315,6 +314,8 @@ gtk_tree_view_column_finalize (GObject *object)
} }
g_free (tree_column->title); g_free (tree_column->title);
G_OBJECT_CLASS (parent_class)->finalize (object);
} }
static void static void