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/gtkstack.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'gtk/gtkstack.c')
-rw-r--r-- | gtk/gtkstack.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c index 8194f67302..8b5545ed26 100644 --- a/gtk/gtkstack.c +++ b/gtk/gtkstack.c @@ -142,8 +142,8 @@ typedef struct { GtkProgressTracker tracker; gboolean first_frame_skipped; - gint last_visible_widget_width; - gint last_visible_widget_height; + int last_visible_widget_width; + int last_visible_widget_height; gboolean interpolate_size; @@ -886,7 +886,7 @@ get_simple_transition_type (gboolean new_child_first, } } -static gint +static int get_bin_window_x (GtkStack *stack) { GtkStackPrivate *priv = gtk_stack_get_instance_private (stack); @@ -906,7 +906,7 @@ get_bin_window_x (GtkStack *stack) return x; } -static gint +static int get_bin_window_y (GtkStack *stack) { GtkStackPrivate *priv = gtk_stack_get_instance_private (stack); @@ -2038,7 +2038,7 @@ gtk_stack_snapshot_under (GtkWidget *widget, GtkStack *stack = GTK_STACK (widget); GtkStackPrivate *priv = gtk_stack_get_instance_private (stack); int widget_width, widget_height; - gint x, y, width, height, pos_x, pos_y; + int x, y, width, height, pos_x, pos_y; x = y = 0; @@ -2382,7 +2382,7 @@ gtk_stack_measure (GtkWidget *widget, GtkStackPrivate *priv = gtk_stack_get_instance_private (stack); GtkStackPage *child_info; GtkWidget *child; - gint child_min, child_nat; + int child_min, child_nat; GList *l; *minimum = 0; |