diff options
author | Timm Bäder <mail@baedert.org> | 2016-10-02 17:37:22 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-16 18:17:21 +0200 |
commit | f45dadadd00d892ba16dc081240987425bc32346 (patch) | |
tree | 181fc50993716de719c7d993c9d66bb7b2adb090 /gtk/gtkbox.h | |
parent | c301357627172e4aeb3a7cb8d04fd5428d930df4 (diff) | |
download | gtk+-f45dadadd00d892ba16dc081240987425bc32346.tar.gz |
box: Remove 'padding' child property
Diffstat (limited to 'gtk/gtkbox.h')
-rw-r--r-- | gtk/gtkbox.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h index 9f99afbcaf..b89812a531 100644 --- a/gtk/gtkbox.h +++ b/gtk/gtkbox.h @@ -84,14 +84,12 @@ GDK_AVAILABLE_IN_ALL void gtk_box_pack_start (GtkBox *box, GtkWidget *child, gboolean expand, - gboolean fill, - guint padding); + gboolean fill); GDK_AVAILABLE_IN_ALL void gtk_box_pack_end (GtkBox *box, GtkWidget *child, gboolean expand, - gboolean fill, - guint padding); + gboolean fill); GDK_AVAILABLE_IN_ALL void gtk_box_set_homogeneous (GtkBox *box, @@ -119,14 +117,12 @@ void gtk_box_query_child_packing (GtkBox *box, GtkWidget *child, gboolean *expand, gboolean *fill, - guint *padding, GtkPackType *pack_type); GDK_AVAILABLE_IN_ALL void gtk_box_set_child_packing (GtkBox *box, GtkWidget *child, gboolean expand, gboolean fill, - guint padding, GtkPackType pack_type); GDK_AVAILABLE_IN_3_12 |