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 /tests/testtreepos.c | |
parent | 46423e614d4fcf142d9578d4788dde664ea280f9 (diff) | |
download | gtk+-d7266b25ba5f2f21a5bd19d0fb88aca530e4d265.tar.gz |
Replace "gint" with "int"
Diffstat (limited to 'tests/testtreepos.c')
-rw-r--r-- | tests/testtreepos.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/testtreepos.c b/tests/testtreepos.c index e2c26e90f6..80be31a0be 100644 --- a/tests/testtreepos.c +++ b/tests/testtreepos.c @@ -2,18 +2,18 @@ static gboolean clicked_icon (GtkTreeView *tv, - gint x, - gint y, + int x, + int y, GtkTreePath **path) { GtkTreeViewColumn *col; - gint cell_x, cell_y; - gint cell_pos, cell_width; + int cell_x, cell_y; + int cell_pos, cell_width; GList *cells, *l; - gint depth; - gint level_indentation; - gint expander_size; - gint indent; + int depth; + int level_indentation; + int expander_size; + int indent; if (gtk_tree_view_get_path_at_pos (tv, x, y, path, &col, &cell_x, &cell_y)) { @@ -60,7 +60,7 @@ release_event (GtkGestureClick *gesture, GtkTreeView *tv) { GtkTreePath *path; - gint tx, ty; + int tx, ty; gtk_tree_view_convert_widget_to_tree_coords (tv, x, y, &tx, &ty); |