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.h | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'gtk/gtkbox.h')
-rw-r--r-- | gtk/gtkbox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h index 01f191c97e..3d74fb73ce 100644 --- a/gtk/gtkbox.h +++ b/gtk/gtkbox.h @@ -70,7 +70,7 @@ GDK_AVAILABLE_IN_ALL GType gtk_box_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_ALL GtkWidget* gtk_box_new (GtkOrientation orientation, - gint spacing); + int spacing); GDK_AVAILABLE_IN_ALL void gtk_box_set_homogeneous (GtkBox *box, gboolean homogeneous); @@ -78,9 +78,9 @@ GDK_AVAILABLE_IN_ALL gboolean gtk_box_get_homogeneous (GtkBox *box); GDK_AVAILABLE_IN_ALL void gtk_box_set_spacing (GtkBox *box, - gint spacing); + int spacing); GDK_AVAILABLE_IN_ALL -gint gtk_box_get_spacing (GtkBox *box); +int gtk_box_get_spacing (GtkBox *box); GDK_AVAILABLE_IN_ALL void gtk_box_set_baseline_position (GtkBox *box, GtkBaselinePosition position); |