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/gtkpathbar.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'gtk/gtkpathbar.c')
-rw-r--r-- | gtk/gtkpathbar.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index cdaf541ef5..d4f74d8016 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -446,11 +446,11 @@ gtk_path_bar_size_allocate (GtkWidget *widget, GtkTextDirection direction; GtkAllocation child_allocation; GList *list, *first_button; - gint width; - gint allocation_width; + int width; + int allocation_width; gboolean need_sliders = TRUE; - gint up_slider_offset = 0; - gint down_slider_offset = 0; + int up_slider_offset = 0; + int down_slider_offset = 0; GtkRequisition child_requisition; /* No path is set; we don't have to allocate anything. */ @@ -487,7 +487,7 @@ gtk_path_bar_size_allocate (GtkWidget *widget, else { gboolean reached_end = FALSE; - gint slider_space = 2 * path_bar->slider_width; + int slider_space = 2 * path_bar->slider_width; if (path_bar->first_scrolled_button) first_button = path_bar->first_scrolled_button; @@ -689,7 +689,7 @@ gtk_path_bar_scroll_down (GtkPathBar *path_bar) GtkAllocation allocation, button_allocation; GList *list; GList *down_button = NULL; - gint space_available; + int space_available; if (gtk_widget_get_child_visible (BUTTON_DATA (path_bar->button_list->data)->button)) { |