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
@ -1785,7 +1785,7 @@ gtk_notebook_unrealize (GtkWidget *widget)
|
||||
}
|
||||
|
||||
if (GTK_WIDGET_CLASS (gtk_notebook_parent_class)->unrealize)
|
||||
(* GTK_WIDGET_CLASS (gtk_notebook_parent_class)->unrealize) (widget);
|
||||
GTK_WIDGET_CLASS (gtk_notebook_parent_class)->unrealize (widget);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -3167,8 +3167,8 @@ gtk_notebook_style_set (GtkWidget *widget,
|
||||
notebook->has_before_next = has_before_next;
|
||||
notebook->has_after_previous = has_after_previous;
|
||||
notebook->has_after_next = has_after_next;
|
||||
|
||||
(* GTK_WIDGET_CLASS (gtk_notebook_parent_class)->style_set) (widget, previous);
|
||||
|
||||
GTK_WIDGET_CLASS (gtk_notebook_parent_class)->style_set (widget, previous);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
Reference in New Issue
Block a user