summaryrefslogtreecommitdiff
path: root/tests/testcellarea.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-07-24 15:54:49 +0200
committerBenjamin Otte <otte@redhat.com>2020-07-25 00:47:36 +0200
commitd7266b25ba5f2f21a5bd19d0fb88aca530e4d265 (patch)
tree8dc515efd6e0c0b0da1d7e02049f284edd6050ff /tests/testcellarea.c
parent46423e614d4fcf142d9578d4788dde664ea280f9 (diff)
downloadgtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz
Replace "gint" with "int"
Diffstat (limited to 'tests/testcellarea.c')
-rw-r--r--tests/testcellarea.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/testcellarea.c b/tests/testcellarea.c
index 158553c28b..6c66daa98a 100644
--- a/tests/testcellarea.c
+++ b/tests/testcellarea.c
@@ -466,9 +466,9 @@ cell_spacing_changed (GtkSpinButton *spin_button,
GtkIconView *iconview)
{
GtkCellArea *area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (iconview));
- gint value;
+ int value;
- value = (gint)gtk_spin_button_get_value (spin_button);
+ value = (int)gtk_spin_button_get_value (spin_button);
gtk_cell_area_box_set_spacing (GTK_CELL_AREA_BOX (area), value);
}
@@ -477,9 +477,9 @@ static void
row_spacing_changed (GtkSpinButton *spin_button,
GtkIconView *iconview)
{
- gint value;
+ int value;
- value = (gint)gtk_spin_button_get_value (spin_button);
+ value = (int)gtk_spin_button_get_value (spin_button);
gtk_icon_view_set_row_spacing (iconview, value);
}
@@ -488,9 +488,9 @@ static void
item_padding_changed (GtkSpinButton *spin_button,
GtkIconView *iconview)
{
- gint value;
+ int value;
- value = (gint)gtk_spin_button_get_value (spin_button);
+ value = (int)gtk_spin_button_get_value (spin_button);
gtk_icon_view_set_item_padding (iconview, value);
}