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/a11y/gtkimagecellaccessible.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'gtk/a11y/gtkimagecellaccessible.c')
-rw-r--r-- | gtk/a11y/gtkimagecellaccessible.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/a11y/gtkimagecellaccessible.c b/gtk/a11y/gtkimagecellaccessible.c index 152c456c26..56827237f7 100644 --- a/gtk/a11y/gtkimagecellaccessible.c +++ b/gtk/a11y/gtkimagecellaccessible.c @@ -79,8 +79,8 @@ gtk_image_cell_accessible_set_image_description (AtkImage *image, static void gtk_image_cell_accessible_get_image_position (AtkImage *image, - gint *x, - gint *y, + int *x, + int *y, AtkCoordType coord_type) { atk_component_get_extents (ATK_COMPONENT (image), x, y, NULL, NULL, @@ -89,8 +89,8 @@ gtk_image_cell_accessible_get_image_position (AtkImage *image, static void gtk_image_cell_accessible_get_image_size (AtkImage *image, - gint *width, - gint *height) + int *width, + int *height) { GtkImageCellAccessible *cell = GTK_IMAGE_CELL_ACCESSIBLE (image); GtkCellRenderer *cell_renderer; |