mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Chain up to parent, so widgets can have internal children.
2008-01-24 Johan Dahlin <johan@gnome.org> * gtk/gtkdialog.c (gtk_dialog_buildable_get_internal_child): Chain up to parent, so widgets can have internal children. svn path=/trunk/; revision=19394
This commit is contained in:
parent
0a87107b3c
commit
3d5b7c2078
@ -1,3 +1,8 @@
|
||||
2008-01-24 Johan Dahlin <johan@gnome.org>
|
||||
|
||||
* gtk/gtkdialog.c (gtk_dialog_buildable_get_internal_child):
|
||||
Chain up to parent, so widgets can have internal children.
|
||||
|
||||
2008-01-22 Mathias Hasselmann <mathias@openismus.com>
|
||||
|
||||
Add gdk_app_launch_context_get_type() to gdk.symbols (#511308, Kazuki
|
||||
|
@ -301,7 +301,9 @@ gtk_dialog_buildable_get_internal_child (GtkBuildable *buildable,
|
||||
else if (strcmp (childname, "action_area") == 0)
|
||||
return G_OBJECT (GTK_DIALOG (buildable)->action_area);
|
||||
|
||||
return NULL;
|
||||
return parent_buildable_iface->get_internal_child (buildable,
|
||||
builder,
|
||||
childname);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user