consistently chain up using GTK_FOO_CLASS(parent_class)->bar(instance)

2008-08-12  Michael Natterer  <mitch@imendio.com>

	* gtk/*.c: consistently chain up using
	GTK_FOO_CLASS(parent_class)->bar(instance) instead of
	(*GTK_FOO_CLASS(parent_class))->bar(instance).


svn path=/trunk/; revision=21085
This commit is contained in:
Michael Natterer
2008-08-12 09:06:34 +00:00
committed by Michael Natterer
parent a862e0dfcd
commit e18d3c6fd3
43 changed files with 192 additions and 189 deletions

View File

@ -566,9 +566,9 @@ gtk_plug_unrealize (GtkWidget *widget)
gtk_window_group_remove_window (plug->modality_group, GTK_WINDOW (plug));
g_object_unref (plug->modality_group);
}
if (GTK_WIDGET_CLASS (gtk_plug_parent_class)->unrealize)
(* GTK_WIDGET_CLASS (gtk_plug_parent_class)->unrealize) (widget);
GTK_WIDGET_CLASS (gtk_plug_parent_class)->unrealize (widget);
}
static void