Revert "gtkbin: replace internal api"

This reverts commit 0f4751c08e.

This causes warnings from the notebook and combobox code.
This commit is contained in:
Matthias Clasen
2014-06-16 17:31:56 -04:00
parent b57c04de5c
commit f0f9c2aa37
6 changed files with 36 additions and 13 deletions

View File

@ -331,3 +331,9 @@ gtk_bin_get_child (GtkBin *bin)
return bin->priv->child;
}
void
_gtk_bin_set_child (GtkBin *bin,
GtkWidget *widget)
{
bin->priv->child = widget;
}