forked from AuroraMiddleware/gtk
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:
parent
44229b60b2
commit
0b5311f5e9
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -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>
|
||||
|
||||
[ Patch from Sebastian Wilhelmi, 52790 ]
|
||||
|
@ -1613,13 +1613,6 @@ Get the type of GtkIdentifier.
|
||||
@menu:
|
||||
@Returns:
|
||||
|
||||
<!-- ##### MACRO gtk_notebook_set_page ##### -->
|
||||
<para>
|
||||
</para>
|
||||
|
||||
@notebook:
|
||||
@page_num:
|
||||
|
||||
<!-- ##### FUNCTION gtk_object_arg_get ##### -->
|
||||
<para>
|
||||
Private function to get an argument and argument info from an object.
|
||||
|
@ -132,6 +132,15 @@ Deprecated compatibility macro.
|
||||
@Returns:
|
||||
|
||||
|
||||
<!-- ##### MACRO gtk_notebook_set_page ##### -->
|
||||
<para>
|
||||
</para>
|
||||
|
||||
<!-- # Unused Parameters # -->
|
||||
@notebook:
|
||||
@page_num:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_notebook_next_page ##### -->
|
||||
<para>
|
||||
</para>
|
||||
|
@ -495,6 +495,7 @@ This can later be composited together with other
|
||||
#GtkRcStyle structures to form a #GtkStyle.
|
||||
</para>
|
||||
|
||||
@parent_instance:
|
||||
@name:
|
||||
@bg_pixmap_name:
|
||||
@font_desc:
|
||||
|
@ -125,6 +125,9 @@ gtk_text_mark_finalize (GObject *obj)
|
||||
|
||||
mark->segment = NULL;
|
||||
}
|
||||
|
||||
/* chain parent_class' handler */
|
||||
G_OBJECT_CLASS (parent_class)->finalize (obj);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -303,7 +303,6 @@ gtk_tree_view_column_finalize (GObject *object)
|
||||
GtkTreeViewColumn *tree_column = (GtkTreeViewColumn *) object;
|
||||
GList *list;
|
||||
|
||||
|
||||
for (list = tree_column->cell_list; list; list = list->next)
|
||||
{
|
||||
GtkTreeViewColumnCellInfo *info = (GtkTreeViewColumnCellInfo *) list->data;
|
||||
@ -315,6 +314,8 @@ gtk_tree_view_column_finalize (GObject *object)
|
||||
}
|
||||
|
||||
g_free (tree_column->title);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user