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:

committed by
Michael Natterer

parent
a862e0dfcd
commit
e18d3c6fd3
@ -138,9 +138,9 @@ gtk_win32_embed_widget_unrealize (GtkWidget *widget)
|
||||
g_object_unref (embed_widget->parent_window);
|
||||
embed_widget->parent_window = NULL;
|
||||
}
|
||||
|
||||
|
||||
if (GTK_WIDGET_CLASS (gtk_win32_embed_widget_parent_class)->unrealize)
|
||||
(* GTK_WIDGET_CLASS (gtk_win32_embed_widget_parent_class)->unrealize) (widget);
|
||||
GTK_WIDGET_CLASS (gtk_win32_embed_widget_parent_class)->unrealize (widget);
|
||||
}
|
||||
|
||||
static LRESULT CALLBACK
|
||||
|
Reference in New Issue
Block a user