diff options
author | Timm Bäder <mail@baedert.org> | 2017-03-05 15:18:32 +0100 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2017-03-05 15:18:32 +0100 |
commit | f860ff86475b16c8d38cdad44c68b3292b7b8fdf (patch) | |
tree | 74a4560eda49e13d21c47e6aaef6beddccb3f155 /gtk/gtkbox.c | |
parent | f1f39e89248334ddd462df2fab81c27f3b94e727 (diff) | |
download | gtk+-f860ff86475b16c8d38cdad44c68b3292b7b8fdf.tar.gz |
widget: Remove get_valign_with_baseline
This only existed for backwards compat reasons which aren't interesting
for gtk4.
Diffstat (limited to 'gtk/gtkbox.c')
-rw-r--r-- | gtk/gtkbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c index 2fbf2bf6f7..7e31c0b9d9 100644 --- a/gtk/gtkbox.c +++ b/gtk/gtkbox.c @@ -631,7 +631,7 @@ gtk_box_size_allocate_no_center (GtkWidget *widget, sizes[i].natural_size = child_size; if (private->orientation == GTK_ORIENTATION_HORIZONTAL && - gtk_widget_get_valign_with_baseline (child->widget) == GTK_ALIGN_BASELINE) + gtk_widget_get_valign (child->widget) == GTK_ALIGN_BASELINE) { int child_allocation_width; int child_minimum_height, child_natural_height; @@ -976,7 +976,7 @@ gtk_box_size_allocate_with_center (GtkWidget *widget, sizes[packing][i].natural_size = child_size; if (priv->orientation == GTK_ORIENTATION_HORIZONTAL && - gtk_widget_get_valign_with_baseline (child->widget) == GTK_ALIGN_BASELINE) + gtk_widget_get_valign (child->widget) == GTK_ALIGN_BASELINE) { gint child_allocation_width; gint child_minimum_height, child_natural_height; |