forked from AuroraMiddleware/gtk
pack children from the start instead of the end, this should probably be
2007-07-04 Johan Dahlin <jdahlin@async.com.br> * gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child): pack children from the start instead of the end, this should probably be made configurable at some point. svn path=/trunk/; revision=18374
This commit is contained in:
parent
612fb47656
commit
631806a20f
@ -1,5 +1,9 @@
|
||||
2007-07-04 Johan Dahlin <jdahlin@async.com.br>
|
||||
|
||||
* gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child):
|
||||
pack children from the start instead of the end, this should
|
||||
probably be made configurable at some point.
|
||||
|
||||
* gtk/gtk-builder-convert:
|
||||
Add support for converting GtkComboBox items, also make sure
|
||||
that we support more than one GtkAdjustment in a file
|
||||
|
@ -433,8 +433,8 @@ _gtk_cell_layout_buildable_add_child (GtkBuildable *buildable,
|
||||
g_return_if_fail (GTK_IS_CELL_RENDERER (child));
|
||||
|
||||
iface = GTK_CELL_LAYOUT_GET_IFACE (buildable);
|
||||
g_return_if_fail (iface->pack_end != NULL);
|
||||
iface->pack_end (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE);
|
||||
g_return_if_fail (iface->pack_start != NULL);
|
||||
iface->pack_start (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE);
|
||||
}
|
||||
|
||||
#define __GTK_CELL_LAYOUT_C__
|
||||
|
Loading…
Reference in New Issue
Block a user