diff options
author | Benjamin Otte <otte@redhat.com> | 2020-07-24 15:54:49 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2020-07-25 00:47:36 +0200 |
commit | d7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch) | |
tree | 8dc515efd6e0c0b0da1d7e02049f284edd6050ff /gtk/gtkbox.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'gtk/gtkbox.c')
-rw-r--r-- | gtk/gtkbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c index d4c296e7df..4e6a228cb3 100644 --- a/gtk/gtkbox.c +++ b/gtk/gtkbox.c @@ -323,7 +323,7 @@ gtk_box_buildable_iface_init (GtkBuildableIface *iface) **/ GtkWidget* gtk_box_new (GtkOrientation orientation, - gint spacing) + int spacing) { return g_object_new (GTK_TYPE_BOX, "orientation", orientation, @@ -390,7 +390,7 @@ gtk_box_get_homogeneous (GtkBox *box) */ void gtk_box_set_spacing (GtkBox *box, - gint spacing) + int spacing) { GtkBoxLayout *box_layout; @@ -412,7 +412,7 @@ gtk_box_set_spacing (GtkBox *box, * * Returns: spacing between children **/ -gint +int gtk_box_get_spacing (GtkBox *box) { GtkLayoutManager *box_layout; |